// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListAIAgentVoiceprintsRequest extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Value values: [1,100]. * * @example * 100 */ pageSize?: number; registrationMode?: string; /** * @remarks * A unique identifier for the voiceprint. This parameter is optional. If provided, only the information for that ID is returned. If not specified, all voiceprints under the account are returned. * * @example * vp_1699123456_8527 */ voiceprintId?: string; static names(): { [key: string]: string } { return { pageNumber: 'PageNumber', pageSize: 'PageSize', registrationMode: 'RegistrationMode', voiceprintId: 'VoiceprintId', }; } static types(): { [key: string]: any } { return { pageNumber: 'number', pageSize: 'number', registrationMode: 'string', voiceprintId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }