import * as $dara from '@darabonba/typescript';
export declare class CreateSmsSignResponseBody extends $dara.Model {
    /**
     * @remarks
     * The request status code. Valid values:
     *
     * - OK: The request was successful.
     * - For other error codes, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The description of the status code.
     *
     * @example
     * successful
     */
    message?: string;
    /**
     * @remarks
     * The ticket number.
     *
     * Reviewers use this parameter when querying reviews. Provide this ticket number if you need to expedite the review.
     *
     * @example
     * 2004415****
     */
    orderId?: string;
    /**
     * @remarks
     * The request ID. It is a unique identifier generated by Alibaba Cloud for the request and can be used to troubleshoot issues.
     *
     * @example
     * CCA2BCFF-2BA7-427C-90EE-AC6994748623
     */
    requestId?: string;
    /**
     * @remarks
     * The signature name.
     *
     * @example
     * 阿里云
     */
    signName?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
