-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generated by Jenkins job OTT-Generate-ClientLibs/885, branch BEO…
…-11720_linear_channels_updated
- Loading branch information
Backend CI
committed
May 12, 2022
1 parent
6865a72
commit 5ac86a8
Showing
13 changed files
with
136 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaCondition, KalturaConditionArgs } from './KalturaCondition'; | ||
|
||
export interface KalturaAssetConditionBaseArgs extends KalturaConditionArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaAssetConditionBase extends KalturaCondition { | ||
|
||
|
||
|
||
constructor(data? : KalturaAssetConditionBaseArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssetConditionBase' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssetConditionBase',KalturaAssetConditionBase); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaAssetConditionBase, KalturaAssetConditionBaseArgs } from './KalturaAssetConditionBase'; | ||
|
||
export interface KalturaAssetShopConditionArgs extends KalturaAssetConditionBaseArgs { | ||
value? : string; | ||
} | ||
|
||
|
||
export class KalturaAssetShopCondition extends KalturaAssetConditionBase { | ||
|
||
value : string; | ||
|
||
constructor(data? : KalturaAssetShopConditionArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssetShopCondition' }, | ||
value : { type : 's' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssetShopCondition',KalturaAssetShopCondition); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaCondition, KalturaConditionArgs } from './KalturaCondition'; | ||
|
||
export interface KalturaIpV6RangeConditionArgs extends KalturaConditionArgs { | ||
fromIP? : string; | ||
toIP? : string; | ||
} | ||
|
||
|
||
export class KalturaIpV6RangeCondition extends KalturaCondition { | ||
|
||
fromIP : string; | ||
toIP : string; | ||
|
||
constructor(data? : KalturaIpV6RangeConditionArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaIpV6RangeCondition' }, | ||
fromIP : { type : 's' }, | ||
toIP : { type : 's' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaIpV6RangeCondition',KalturaIpV6RangeCondition); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters