/** * 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 { AdminLiteResource } from './AdminLiteResource'; /** * * @export * @interface AdminNoteResource */ export interface AdminNoteResource { /** * * @type {number} * @memberof AdminNoteResource */ id: number; /** * * @type {string} * @memberof AdminNoteResource */ note: string; /** * * @type {Date} * @memberof AdminNoteResource */ createdAt?: Date | null; /** * * @type {Date} * @memberof AdminNoteResource */ updatedAt?: Date | null; /** * * @type {AdminLiteResource} * @memberof AdminNoteResource */ admin: AdminLiteResource | null; } /** * Check if a given object implements the AdminNoteResource interface. */ export declare function instanceOfAdminNoteResource(value: object): value is AdminNoteResource; export declare function AdminNoteResourceFromJSON(json: any): AdminNoteResource; export declare function AdminNoteResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminNoteResource; export declare function AdminNoteResourceToJSON(json: any): AdminNoteResource; export declare function AdminNoteResourceToJSONTyped(value?: AdminNoteResource | null, ignoreDiscriminator?: boolean): any;