import * as $dara from '@darabonba/typescript';
/**
 */
export declare class AddShortUrlResponseBodyData extends $dara.Model {
    /**
     * @remarks
     * The time when the short URL expires.
     *
     * > The value of **ExpireDate** is on the hour.
     *
     * @example
     * 2021-09-19 00:00:00
     */
    expireDate?: string;
    /**
     * @remarks
     * The short URL.
     *
     * @example
     * http://****.cn/6y8uy7
     */
    shortUrl?: string;
    /**
     * @remarks
     * The source URL.
     *
     * @example
     * https://www.****.com/product/sms
     */
    sourceUrl?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class AddShortUrlResponseBody extends $dara.Model {
    /**
     * @remarks
     * The response code.
     *
     * *   The value OK indicates that the request was successful.
     * *   Other values indicate that the request failed. For more information, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
     *
     * @example
     * OK
     */
    code?: string;
    /**
     * @remarks
     * The details of the short URL.
     */
    data?: AddShortUrlResponseBodyData;
    /**
     * @remarks
     * The returned message.
     *
     * @example
     * OK
     */
    message?: string;
    /**
     * @remarks
     * The request ID.
     *
     * @example
     * 819BE656-D2E0-4858-8B21-B2E477085AAF
     */
    requestId?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
