import * as $dara from '@darabonba/typescript'; export declare class UpdateLivePackageChannelCredentialsRequest extends $dara.Model { /** * @remarks * The channel name. * * This parameter is required. * * @example * channel-1 */ channelName?: string; /** * @remarks * The channel group name. * * This parameter is required. * * @example * group-1 */ groupName?: string; /** * @remarks * Specifies whether to update the credentials. 1: updates the credentials of endpoint 1. 2: updates the credentials of endpoint 2. 3: updates the credentials of endpoints 1 and 2. * * This parameter is required. * * @example * 3 */ rotateCredentials?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }