/** * 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. */ import type { SiteLiteResource } from './SiteLiteResource'; /** * * @export * @interface SiteNotificationListResource */ export interface SiteNotificationListResource { /** * * @type {number} * @memberof SiteNotificationListResource */ id: number; /** * * @type {string} * @memberof SiteNotificationListResource */ heading?: string | null; /** * * @type {string} * @memberof SiteNotificationListResource */ type?: string | null; /** * * @type {boolean} * @memberof SiteNotificationListResource */ isActive: boolean; /** * * @type {string} * @memberof SiteNotificationListResource */ startDate: string; /** * * @type {string} * @memberof SiteNotificationListResource */ endDate: string; /** * * @type {string} * @memberof SiteNotificationListResource */ text: string; /** * * @type {string} * @memberof SiteNotificationListResource */ textColour: string; /** * * @type {string} * @memberof SiteNotificationListResource */ backgroundColour: string; /** * * @type {SiteLiteResource} * @memberof SiteNotificationListResource */ sites: SiteLiteResource | null; } /** * Check if a given object implements the SiteNotificationListResource interface. */ export declare function instanceOfSiteNotificationListResource(value: object): value is SiteNotificationListResource; export declare function SiteNotificationListResourceFromJSON(json: any): SiteNotificationListResource; export declare function SiteNotificationListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SiteNotificationListResource; export declare function SiteNotificationListResourceToJSON(json: any): SiteNotificationListResource; export declare function SiteNotificationListResourceToJSONTyped(value?: SiteNotificationListResource | null, ignoreDiscriminator?: boolean): any;