/** * 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 UpdateSiteNotificationRequest */ export interface UpdateSiteNotificationRequest { /** * * @type {string} * @memberof UpdateSiteNotificationRequest */ text: string; /** * * @type {Date} * @memberof UpdateSiteNotificationRequest */ startDate: Date; /** * * @type {Date} * @memberof UpdateSiteNotificationRequest */ endDate: Date; /** * * @type {string} * @memberof UpdateSiteNotificationRequest */ backgroundColour: string; /** * * @type {string} * @memberof UpdateSiteNotificationRequest */ textColour: string; } /** * Check if a given object implements the UpdateSiteNotificationRequest interface. */ export declare function instanceOfUpdateSiteNotificationRequest(value: object): value is UpdateSiteNotificationRequest; export declare function UpdateSiteNotificationRequestFromJSON(json: any): UpdateSiteNotificationRequest; export declare function UpdateSiteNotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateSiteNotificationRequest; export declare function UpdateSiteNotificationRequestToJSON(json: any): UpdateSiteNotificationRequest; export declare function UpdateSiteNotificationRequestToJSONTyped(value?: UpdateSiteNotificationRequest | null, ignoreDiscriminator?: boolean): any;