/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CreateOverlayTemplateRequest */ export interface CreateOverlayTemplateRequest { /** * * @type {string} * @memberof CreateOverlayTemplateRequest */ name: string; /** * * @type {Array} * @memberof CreateOverlayTemplateRequest */ sites: Array; } /** * Check if a given object implements the CreateOverlayTemplateRequest interface. */ export declare function instanceOfCreateOverlayTemplateRequest(value: object): value is CreateOverlayTemplateRequest; export declare function CreateOverlayTemplateRequestFromJSON(json: any): CreateOverlayTemplateRequest; export declare function CreateOverlayTemplateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOverlayTemplateRequest; export declare function CreateOverlayTemplateRequestToJSON(json: any): CreateOverlayTemplateRequest; export declare function CreateOverlayTemplateRequestToJSONTyped(value?: CreateOverlayTemplateRequest | null, ignoreDiscriminator?: boolean): any;