// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SetResellerUserStatusResponseBody extends $dara.Model { /** * @remarks * The error code returned if the call failed. For more information, see the "Error codes" section of this topic. * * @example * 200 */ code?: string; /** * @remarks * Indicates whether the request is successful. * * @example * true */ data?: boolean; /** * @remarks * The message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * F5B803CF-94D8-43AF-ADB3-D819AAD30E27 */ requestId?: string; /** * @remarks * Indicates whether the call is successful. A value of true indicates that the call is successful. A value of false indicates that 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: 'boolean', message: 'string', requestId: 'string', success: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }