/** * 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 { CustomerFrontendResource } from './CustomerFrontendResource'; /** * * @export * @interface CustomerAuthResponseResource */ export interface CustomerAuthResponseResource { /** * * @type {string} * @memberof CustomerAuthResponseResource */ token: string; /** * * @type {CustomerFrontendResource} * @memberof CustomerAuthResponseResource */ customer: CustomerFrontendResource | null; } /** * Check if a given object implements the CustomerAuthResponseResource interface. */ export declare function instanceOfCustomerAuthResponseResource(value: object): value is CustomerAuthResponseResource; export declare function CustomerAuthResponseResourceFromJSON(json: any): CustomerAuthResponseResource; export declare function CustomerAuthResponseResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerAuthResponseResource; export declare function CustomerAuthResponseResourceToJSON(json: any): CustomerAuthResponseResource; export declare function CustomerAuthResponseResourceToJSONTyped(value?: CustomerAuthResponseResource | null, ignoreDiscriminator?: boolean): any;