import * as $dara from '@darabonba/typescript'; export declare class SendBatchCardSmsResponseBodyData extends $dara.Model { /** * @remarks * The ID of the card message. * * @example * 123 */ bizCardId?: string; /** * @remarks * The ID of the digital message. * * @example * 3214 */ bizDigitalId?: string; /** * @remarks * The ID of the text message. * * @example * 3256 */ bizSmsId?: string; /** * @remarks * The review status of the card message template. * * * **0**: pending approval * * **1**: approved * * **2**: rejected * * > Unapproved card messages are rolled back. * * @example * 0 */ cardTmpState?: number; /** * @remarks * The mobile phone number from which the card message is sent. * * @example * 1390000**** */ mediaMobiles?: string; /** * @remarks * The mobile phone number whose card message is rolled back. * * @example * 1390000**** */ notMediaMobiles?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SendBatchCardSmsResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * * The value OK indicates that the request was successful. * * For more information about other response codes, see [API error codes](https://help.aliyun.com/document_detail/101346.html). * * @example * OK */ code?: string; /** * @remarks * The data returned. */ data?: SendBatchCardSmsResponseBodyData; /** * @remarks * The request ID. * * @example * A90E4451-FED7-49D2-87C8-00700A8C4D0D */ requestId?: string; /** * @remarks * Indicates whether the request is successful. Valid values: * * * **true** * * **false** * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }