// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GetCustomerListResponseBodyData extends $dara.Model { /** * @remarks * The list of customer IDs. */ uidList?: string[]; static names(): { [key: string]: string } { return { uidList: 'UidList', }; } static types(): { [key: string]: any } { return { uidList: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.uidList)) { $dara.Model.validateArray(this.uidList); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class GetCustomerListResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The data returned. */ data?: GetCustomerListResponseBodyData; /** * @remarks * The message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. You can use the ID to query logs and troubleshoot issues. * * @example * 79EE7556-0CFD-44EB-9CD6-B3B526E3A85F */ requestId?: string; /** * @remarks * Indicates whether the call is successful. Valid values: * * * **true**: The call is successful. * * **false**: The call failed. * * @example * true */ success?: boolean; static names(): { [key: string]: string } { return { code: 'Code', data: 'Data', message: 'Message', requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { code: 'string', data: GetCustomerListResponseBodyData, message: 'string', requestId: 'string', success: 'boolean', }; } validate() { if(this.data && typeof (this.data as any).validate === 'function') { (this.data as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }