/** * 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 PermissionListResource */ export interface PermissionListResource { /** * * @type {number} * @memberof PermissionListResource */ id?: number | null; /** * * @type {string} * @memberof PermissionListResource */ name: string; /** * * @type {Date} * @memberof PermissionListResource */ createdAt?: Date | null; } /** * Check if a given object implements the PermissionListResource interface. */ export declare function instanceOfPermissionListResource(value: object): value is PermissionListResource; export declare function PermissionListResourceFromJSON(json: any): PermissionListResource; export declare function PermissionListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionListResource; export declare function PermissionListResourceToJSON(json: any): PermissionListResource; export declare function PermissionListResourceToJSONTyped(value?: PermissionListResource | null, ignoreDiscriminator?: boolean): any;