UNPKG

@kaltura-ng/kaltura-client

Version:
11 lines (10 loc) 586 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaDistributionProfile } from './KalturaDistributionProfile'; import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse'; export interface KalturaDistributionProfileListResponseArgs extends KalturaListResponseArgs { } export declare class KalturaDistributionProfileListResponse extends KalturaListResponse { readonly objects: KalturaDistributionProfile[]; constructor(data?: KalturaDistributionProfileListResponseArgs); protected _getMetadata(): KalturaObjectMetadata; }