import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }