/** * 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 DefinitionListResource */ export interface DefinitionListResource { /** * * @type {number} * @memberof DefinitionListResource */ id: number; /** * * @type {string} * @memberof DefinitionListResource */ name: string; } /** * Check if a given object implements the DefinitionListResource interface. */ export declare function instanceOfDefinitionListResource(value: object): value is DefinitionListResource; export declare function DefinitionListResourceFromJSON(json: any): DefinitionListResource; export declare function DefinitionListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DefinitionListResource; export declare function DefinitionListResourceToJSON(json: any): DefinitionListResource; export declare function DefinitionListResourceToJSONTyped(value?: DefinitionListResource | null, ignoreDiscriminator?: boolean): any;