import * as $dara from '@darabonba/typescript';
export declare class RequiredPhoneCodeResponseBody extends $dara.Model {
    /**
     * @remarks
     * The details about the access denial.
     *
     * @example
     * 无
     */
    accessDeniedDetail?: string;
    /**
     * @remarks
     * The request status code.
     *
     * - OK indicates that the request was successful.
     * - For other error codes, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * This field is not returned and can be ignored.
     *
     * @example
     * -
     */
    data?: string;
    /**
     * @remarks
     * The description of the status code.
     *
     * @example
     * OK
     */
    message?: string;
    /**
     * @remarks
     * The request ID.
     *
     * @example
     * 90E63D28-E31D-1EB2-8939-A9486641****
     */
    requestId?: string;
    /**
     * @remarks
     * Indicates whether the operation call is successful. Valid values:
     *
     * - **true**: The call is successful.
     *
     * - **false**: The call fails.
     *
     * @example
     * true
     */
    success?: boolean;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
