import * as $dara from '@darabonba/typescript'; export declare class GetCustomTemplateRequest extends $dara.Model { /** * @remarks * The template subtype. * * @example * 1 */ subtype?: number; /** * @remarks * The ID of the custom template. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; /** * @remarks * The ID of the template type. This parameter is required if you omit `TemplateId` to get a default template. * * @example * 1 */ type?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }