-
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/1372, branch 10…
….7.0.0
- Loading branch information
Backend CI
committed
Nov 27, 2024
1 parent
d3231d3
commit ebde2e8
Showing
50 changed files
with
1,169 additions
and
30 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 { KalturaAssetListResponse } from './KalturaAssetListResponse'; | ||
|
||
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; | ||
|
||
export interface AssetWatchBasedRecommendationsListActionArgs extends KalturaRequestArgs { | ||
profileId : number; | ||
} | ||
|
||
/** | ||
* Build request payload for service 'asset' action 'watchBasedRecommendationsList'. | ||
* | ||
* Usage: Return list of assets - assets are personal recommendations for the caller | ||
* | ||
* Server response type: KalturaAssetListResponse | ||
* Server failure response type: KalturaAPIException | ||
* @class | ||
* @extends KalturaRequest | ||
*/ | ||
export class AssetWatchBasedRecommendationsListAction extends KalturaRequest<KalturaAssetListResponse> { | ||
|
||
profileId : number; | ||
|
||
constructor(data : AssetWatchBasedRecommendationsListActionArgs) | ||
{ | ||
super(data, {responseType : 'o', responseSubType : 'KalturaAssetListResponse', responseConstructor : KalturaAssetListResponse }); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
service : { type : 'c', default : 'asset' }, | ||
action : { type : 'c', default : 'watchBasedRecommendationsList' }, | ||
profileId : { type : 'n' } | ||
} | ||
); | ||
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
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 { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; | ||
|
||
export interface KalturaAssociatedShopEntitiesArgs extends KalturaObjectBaseArgs { | ||
assetUserRuleIdIn? : string; | ||
includeNullAssetUserRuleId? : boolean; | ||
} | ||
|
||
|
||
export class KalturaAssociatedShopEntities extends KalturaObjectBase { | ||
|
||
assetUserRuleIdIn : string; | ||
includeNullAssetUserRuleId : boolean; | ||
|
||
constructor(data? : KalturaAssociatedShopEntitiesArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssociatedShopEntities' }, | ||
assetUserRuleIdIn : { type : 's' }, | ||
includeNullAssetUserRuleId : { type : 'b' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssociatedShopEntities',KalturaAssociatedShopEntities); |
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,34 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaAssetFilter, KalturaAssetFilterArgs } from './KalturaAssetFilter'; | ||
|
||
export interface KalturaLiveAssetHasRecordingsFilterArgs extends KalturaAssetFilterArgs { | ||
liveAssetIdEqual? : number; | ||
} | ||
|
||
|
||
export class KalturaLiveAssetHasRecordingsFilter extends KalturaAssetFilter { | ||
|
||
liveAssetIdEqual : number; | ||
|
||
constructor(data? : KalturaLiveAssetHasRecordingsFilterArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaLiveAssetHasRecordingsFilter' }, | ||
liveAssetIdEqual : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaLiveAssetHasRecordingsFilter',KalturaLiveAssetHasRecordingsFilter); |
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.