import * as $dara from '@darabonba/typescript';
export declare class UpdateSmsSignResponseBody extends $dara.Model {
    /**
     * @remarks
     * The status code of the request. 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
     * OK
     */
    message?: string;
    /**
     * @remarks
     * The order ID.
     *
     * Reviewers use this ID to look up the submission. Provide this order ID to request an expedited review.
     *
     * @example
     * 2004417****
     */
    orderId?: string;
    /**
     * @remarks
     * The unique identifier for the request, generated by Alibaba Cloud. Use this ID to troubleshoot issues.
     *
     * @example
     * A90E4451-FED7-49D2-87C8-00700A8C4D1D
     */
    requestId?: string;
    /**
     * @remarks
     * The updated signature name.
     *
     * @example
     * 登录验证
     */
    signName?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
