import * as $dara from '@darabonba/typescript';
export declare class CreateSmsAuthorizationLetterResponseBody extends $dara.Model {
    /**
     * @remarks
     * The detailed information about the access denial. This field is returned only when RAM verification fails.
     *
     * @example
     * 无
     */
    accessDeniedDetail?: string;
    /**
     * @remarks
     * The status code of the request.
     *
     * - OK indicates that the request was successful.
     * - For other error codes, see the error code list in this chapter or [API Error Codes](https://help.aliyun.com/document_detail/101346.html) of this product.
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The ID of the authorization letter.
     *
     * @example
     * 10000****
     */
    data?: string;
    /**
     * @remarks
     * The description of the status code.
     *
     * @example
     * OK
     */
    message?: string;
    /**
     * @remarks
     * The ID of the current request, which is a unique identifier generated by Alibaba Cloud for the request and can be used to troubleshoot and locate issues.
     *
     * @example
     * F655A8D5-B967-440B-8683-DAD6FF8DE990
     */
    requestId?: string;
    /**
     * @remarks
     * Indicates whether the API call was successful. Valid values:
     *
     * - **true**: The call was successful.
     * - **false**: The call failed.
     *
     * @example
     * true
     */
    success?: boolean;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
