import * as $dara from '@darabonba/typescript'; export declare class UpdateLivePackageChannelCredentialsResponseBodyIngestEndpoints extends $dara.Model { /** * @remarks * The ingest endpoint ID. `input1` indicates primary and `input2` indicates secondary. * * @example * input1 */ id?: string; /** * @remarks * The password. * * @example * examplePassword123 */ password?: string; /** * @remarks * The ingest endpoint URL. * * @example * rtmp://example.com/live/input1 */ url?: string; /** * @remarks * The username. * * @example * user1 */ username?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateLivePackageChannelCredentialsResponseBody extends $dara.Model { /** * @remarks * The information about the ingest endpoint. */ ingestEndpoints?: UpdateLivePackageChannelCredentialsResponseBodyIngestEndpoints[]; /** * @remarks * The request ID. * * @example * 771A1414-27BF-53E6-AB73-EFCB*****ACF */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }