-
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/957, branch BEO…
…-11915-Segmentation
- Loading branch information
Backend CI
committed
Sep 4, 2022
1 parent
7599131
commit 3d68a13
Showing
22 changed files
with
419 additions
and
11 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,34 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaBulkUploadObjectData, KalturaBulkUploadObjectDataArgs } from './KalturaBulkUploadObjectData'; | ||
|
||
export interface KalturaBaseBulkSegmentsArgs extends KalturaBulkUploadObjectDataArgs { | ||
segmentId? : number; | ||
} | ||
|
||
|
||
export class KalturaBaseBulkSegments extends KalturaBulkUploadObjectData { | ||
|
||
segmentId : number; | ||
|
||
constructor(data? : KalturaBaseBulkSegmentsArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBaseBulkSegments' }, | ||
segmentId : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBaseBulkSegments',KalturaBaseBulkSegments); |
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 { KalturaBulkUploadResult, KalturaBulkUploadResultArgs } from './KalturaBulkUploadResult'; | ||
|
||
export interface KalturaBaseBulkUploadSegmentsResultArgs extends KalturaBulkUploadResultArgs { | ||
segmentId? : number; | ||
} | ||
|
||
|
||
export class KalturaBaseBulkUploadSegmentsResult extends KalturaBulkUploadResult { | ||
|
||
segmentId : number; | ||
|
||
constructor(data? : KalturaBaseBulkUploadSegmentsResultArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBaseBulkUploadSegmentsResult' }, | ||
segmentId : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBaseBulkUploadSegmentsResult',KalturaBaseBulkUploadSegmentsResult); |
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,6 @@ | ||
|
||
|
||
export enum KalturaBooleanOperator { | ||
and = 'And', | ||
or = 'Or' | ||
} |
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 { KalturaBaseBulkSegments, KalturaBaseBulkSegmentsArgs } from './KalturaBaseBulkSegments'; | ||
|
||
export interface KalturaBulkSegmentedHouseholdsDataArgs extends KalturaBaseBulkSegmentsArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBulkSegmentedHouseholdsData extends KalturaBaseBulkSegments { | ||
|
||
|
||
|
||
constructor(data? : KalturaBulkSegmentedHouseholdsDataArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBulkSegmentedHouseholdsData' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBulkSegmentedHouseholdsData',KalturaBulkSegmentedHouseholdsData); |
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 { KalturaBaseBulkUploadSegmentsResult, KalturaBaseBulkUploadSegmentsResultArgs } from './KalturaBaseBulkUploadSegmentsResult'; | ||
|
||
export interface KalturaBulkSegmentedHouseholdsResultArgs extends KalturaBaseBulkUploadSegmentsResultArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBulkSegmentedHouseholdsResult extends KalturaBaseBulkUploadSegmentsResult { | ||
|
||
|
||
|
||
constructor(data? : KalturaBulkSegmentedHouseholdsResultArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBulkSegmentedHouseholdsResult' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBulkSegmentedHouseholdsResult',KalturaBulkSegmentedHouseholdsResult); |
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 { KalturaBaseBulkUploadSegmentsResult, KalturaBaseBulkUploadSegmentsResultArgs } from './KalturaBaseBulkUploadSegmentsResult'; | ||
|
||
export interface KalturaBulkSegmentedUsersResultArgs extends KalturaBaseBulkUploadSegmentsResultArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBulkSegmentedUsersResult extends KalturaBaseBulkUploadSegmentsResult { | ||
|
||
|
||
|
||
constructor(data? : KalturaBulkSegmentedUsersResultArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBulkSegmentedUsersResult' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBulkSegmentedUsersResult',KalturaBulkSegmentedUsersResult); |
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 { KalturaBaseBulkSegments, KalturaBaseBulkSegmentsArgs } from './KalturaBaseBulkSegments'; | ||
|
||
export interface KalturaBulkSegmentedusersDataArgs extends KalturaBaseBulkSegmentsArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBulkSegmentedusersData extends KalturaBaseBulkSegments { | ||
|
||
|
||
|
||
constructor(data? : KalturaBulkSegmentedusersDataArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBulkSegmentedusersData' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBulkSegmentedusersData',KalturaBulkSegmentedusersData); |
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 { KalturaCampaignSearchFilter, KalturaCampaignSearchFilterArgs } from './KalturaCampaignSearchFilter'; | ||
|
||
export interface KalturaCampaignSegmentFilterArgs extends KalturaCampaignSearchFilterArgs { | ||
segmentIdIn? : string; | ||
} | ||
|
||
|
||
export class KalturaCampaignSegmentFilter extends KalturaCampaignSearchFilter { | ||
|
||
segmentIdIn : string; | ||
|
||
constructor(data? : KalturaCampaignSegmentFilterArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaCampaignSegmentFilter' }, | ||
segmentIdIn : { type : 's' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaCampaignSegmentFilter',KalturaCampaignSegmentFilter); |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
|
||
|
||
export enum KalturaMonetizationType { | ||
boxset = 'boxset', | ||
any = 'any', | ||
boxset = 'boxset', | ||
ppv = 'ppv', | ||
ppvLive = 'ppv_live', | ||
subscription = 'subscription' | ||
} |
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 KalturaSegmentationPartnerConfigurationArgs extends KalturaObjectBaseArgs { | ||
maxCalculatedPeriod? : number; | ||
maxDynamicSegments? : number; | ||
} | ||
|
||
|
||
export class KalturaSegmentationPartnerConfiguration extends KalturaObjectBase { | ||
|
||
maxCalculatedPeriod : number; | ||
maxDynamicSegments : number; | ||
|
||
constructor(data? : KalturaSegmentationPartnerConfigurationArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaSegmentationPartnerConfiguration' }, | ||
maxCalculatedPeriod : { type : 'n' }, | ||
maxDynamicSegments : { type : 'n' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaSegmentationPartnerConfiguration',KalturaSegmentationPartnerConfiguration); |
Oops, something went wrong.