import * as $dara from '@darabonba/typescript';
export declare class QuerySendDetailsResponseBodySmsSendDetailDTOsSmsSendDetailDTO extends $dara.Model {
    content?: string;
    errCode?: string;
    outId?: string;
    phoneNum?: string;
    receiveDate?: string;
    sendDate?: string;
    sendStatus?: number;
    templateCode?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class QuerySendDetailsResponseBodySmsSendDetailDTOs extends $dara.Model {
    smsSendDetailDTO?: QuerySendDetailsResponseBodySmsSendDetailDTOsSmsSendDetailDTO[];
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class QuerySendDetailsResponseBody extends $dara.Model {
    /**
     * @remarks
     * The request status code.
     *
     * - **OK** indicates 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 request ID. This unique identifier is generated by Alibaba Cloud for each request and can be used for troubleshooting.
     *
     * @example
     * 819BE656-D2E0-4858-8B21-B2E477085AAF
     */
    requestId?: string;
    /**
     * @remarks
     * Contains the delivery details.
     */
    smsSendDetailDTOs?: QuerySendDetailsResponseBodySmsSendDetailDTOs;
    /**
     * @remarks
     * The total number of SMS messages sent.
     *
     * > - This value represents the number of submission attempts, not the number of units for billing.
     *
     * @example
     * 1
     */
    totalCount?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
