import * as $dara from '@darabonba/typescript';
export declare class TagResourcesRequestTag extends $dara.Model {
    /**
     * @remarks
     * The tag key.
     *
     * @example
     * TestKey
     */
    key?: string;
    /**
     * @remarks
     * The tag value.
     *
     * @example
     * TestValue
     */
    value?: string;
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
export declare class TagResourcesRequest extends $dara.Model {
    ownerId?: number;
    /**
     * @remarks
     * The product name. Default value: **dysms**.
     *
     * @example
     * dysms
     */
    prodCode?: string;
    /**
     * @remarks
     * The region ID. Default value: **cn-hangzhou**. For more region IDs, see [Endpoints](https://help.aliyun.com/document_detail/419270.html).
     *
     * This parameter is required.
     *
     * @example
     * cn-hangzhou
     */
    regionId?: string;
    /**
     * @remarks
     * The SMS template codes. The number of codes cannot exceed 20.
     *
     * @example
     * SMS_23423423
     */
    resourceId?: string[];
    resourceOwnerAccount?: string;
    resourceOwnerId?: number;
    /**
     * @remarks
     * The resource type. Default value: **TEMPLATE**.
     *
     * This parameter is required.
     *
     * @example
     * TEMPLATE
     */
    resourceType?: string;
    /**
     * @remarks
     * The tags. You can add up to 20 tags at a time.
     *
     * This parameter is required.
     */
    tag?: TagResourcesRequestTag[];
    static names(): {
        [key: string]: string;
    };
    static types(): {
        [key: string]: any;
    };
    validate(): void;
    constructor(map?: {
        [key: string]: any;
    });
}
