-
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/869, branch 760…
…_live-to-vod-config-and-padding-features
- Loading branch information
Backend CI
committed
Apr 25, 2022
1 parent
c52ceee
commit 2cac46c
Showing
112 changed files
with
1,546 additions
and
563 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaAssetPersonalMarkupListResponse } from './KalturaAssetPersonalMarkupListResponse'; | ||
|
||
import { KalturaAssetPersonalMarkupSearchFilter } from './KalturaAssetPersonalMarkupSearchFilter'; | ||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface AssetPersonalMarkupListActionArgs extends KalturaRequestArgs { | ||
filter : KalturaAssetPersonalMarkupSearchFilter; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'assetPersonalMarkup' action 'list'. | ||
* | ||
* Usage: Response with list of assetPersonalMarkup | ||
* | ||
* Server response type: KalturaAssetPersonalMarkupListResponse | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class AssetPersonalMarkupListAction extends KalturaRequest<KalturaAssetPersonalMarkupListResponse> { | ||
|
||
filter : KalturaAssetPersonalMarkupSearchFilter; | ||
|
||
constructor(data : AssetPersonalMarkupListActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaAssetPersonalMarkupListResponse', responseConstructor : KalturaAssetPersonalMarkupListResponse }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'assetpersonalmarkup' }, | ||
action : { type : 'c', default : 'list' }, | ||
filter : { type : 'o', subTypeConstructor : KalturaAssetPersonalMarkupSearchFilter, subType : 'KalturaAssetPersonalMarkupSearchFilter' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
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,44 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaDeviceBrand } from './KalturaDeviceBrand'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface DeviceBrandAddActionArgs extends KalturaRequestArgs { | ||
deviceBrand : KalturaDeviceBrand; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'deviceBrand' action 'add'. | ||
* | ||
* Usage: Adds a new device brand which belongs to a specific group | ||
* | ||
* Server response type: KalturaDeviceBrand | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class DeviceBrandAddAction extends KalturaRequest<KalturaDeviceBrand> { | ||
|
||
deviceBrand : KalturaDeviceBrand; | ||
|
||
constructor(data : DeviceBrandAddActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaDeviceBrand', responseConstructor : KalturaDeviceBrand }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'devicebrand' }, | ||
action : { type : 'c', default : 'add' }, | ||
deviceBrand : { type : 'o', subTypeConstructor : KalturaDeviceBrand, subType : 'KalturaDeviceBrand' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
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,47 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaDeviceBrand } from './KalturaDeviceBrand'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface DeviceBrandUpdateActionArgs extends KalturaRequestArgs { | ||
id : number; | ||
deviceBrand : KalturaDeviceBrand; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'deviceBrand' action 'update'. | ||
* | ||
* Usage: Updates an existing device brand which belongs to a specific group | ||
* | ||
* Server response type: KalturaDeviceBrand | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class DeviceBrandUpdateAction extends KalturaRequest<KalturaDeviceBrand> { | ||
|
||
id : number; | ||
deviceBrand : KalturaDeviceBrand; | ||
|
||
constructor(data : DeviceBrandUpdateActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaDeviceBrand', responseConstructor : KalturaDeviceBrand }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'devicebrand' }, | ||
action : { type : 'c', default : 'update' }, | ||
id : { type : 'n' }, | ||
deviceBrand : { type : 'o', subTypeConstructor : KalturaDeviceBrand, subType : 'KalturaDeviceBrand' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
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,44 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaDeviceFamily } from './KalturaDeviceFamily'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface DeviceFamilyAddActionArgs extends KalturaRequestArgs { | ||
deviceFamily : KalturaDeviceFamily; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'deviceFamily' action 'add'. | ||
* | ||
* Usage: Adds a new device family which belongs to a specific group | ||
* | ||
* Server response type: KalturaDeviceFamily | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class DeviceFamilyAddAction extends KalturaRequest<KalturaDeviceFamily> { | ||
|
||
deviceFamily : KalturaDeviceFamily; | ||
|
||
constructor(data : DeviceFamilyAddActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaDeviceFamily', responseConstructor : KalturaDeviceFamily }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'devicefamily' }, | ||
action : { type : 'c', default : 'add' }, | ||
deviceFamily : { type : 'o', subTypeConstructor : KalturaDeviceFamily, subType : 'KalturaDeviceFamily' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
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,47 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaDeviceFamily } from './KalturaDeviceFamily'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface DeviceFamilyUpdateActionArgs extends KalturaRequestArgs { | ||
id : number; | ||
deviceFamily : KalturaDeviceFamily; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'deviceFamily' action 'update'. | ||
* | ||
* Usage: Updates an existing device family which belongs to a specific group | ||
* | ||
* Server response type: KalturaDeviceFamily | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class DeviceFamilyUpdateAction extends KalturaRequest<KalturaDeviceFamily> { | ||
|
||
id : number; | ||
deviceFamily : KalturaDeviceFamily; | ||
|
||
constructor(data : DeviceFamilyUpdateActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaDeviceFamily', responseConstructor : KalturaDeviceFamily }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'devicefamily' }, | ||
action : { type : 'c', default : 'update' }, | ||
id : { type : 'n' }, | ||
deviceFamily : { type : 'o', subTypeConstructor : KalturaDeviceFamily, subType : 'KalturaDeviceFamily' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
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
Oops, something went wrong.