import * as $dara from '@darabonba/typescript'; export declare class GetAiRtcAuthCodeListRequest extends $dara.Model { /** * @remarks * The ID of the batch. * * @example * 17712*** */ licenseItemId?: string; /** * @remarks * Specifies whether to include the total count of records in the response. Defaults to `true`. * * @example * true */ needTotalCount?: boolean; /** * @remarks * The page number. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The status of the authorization code. Valid values: * * * `1`: Activated * * `2`: Inactive * * @example * 1 */ status?: number; /** * @remarks * The type of license. Valid values: * * * `1`: Audio call * * `2`: Vision call * * @example * 1 */ type?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }