import * as $dara from '@darabonba/typescript';
export declare class CreateDigitalSmsTemplateResponseBody extends $dara.Model {
    /**
     * @remarks
     * The status code of the request. A value of `OK` indicates a successful request.
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The response message. `success` indicates a successful request. If the request fails, an error message is returned.
     *
     * @example
     * success
     */
    message?: string;
    /**
     * @remarks
     * The request ID. This unique identifier is generated by Alibaba Cloud and can be used to troubleshoot issues.
     *
     * @example
     * F655A8D5-B967-440B-8683-DAD6FF8DE990
     */
    requestId?: string;
    /**
     * @remarks
     * The template code.
     *
     * @example
     * DIGITAL_SMS_0001
     */
    templateCode?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
