import * as $dara from '@darabonba/typescript'; export declare class ChangeResellerConsumeAmountResponseBody extends $dara.Model { /** * @remarks * The error code returned if the call failed. For more information, see the "Error codes" section of the topic. * * @example * 200 */ code?: string; /** * @remarks * The consumption quota for the quota ledger after adjustment. * * @example * 300.00 */ data?: string; /** * @remarks * The message returned. * * @example * successful */ message?: string; /** * @remarks * The ID of the request. * * @example * D6E068C3-25BC-455A-85FE-45F0B22ECB1F */ 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; }); }