import * as $dara from '@darabonba/typescript'; export declare class PutContactResponseBody extends $dara.Model { /** * @remarks * The status code. * * > The status code 200 indicates that the request was successful. * * @example * 200 */ code?: string; /** * @remarks * The error message. * * @example * The Request is not authorization. */ message?: string; /** * @remarks * The request ID. * * @example * 181C406E-9DE4-484C-9C61-37AE9A1A12EE */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * true * * false * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }