/** * 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 LoginAsCustomerUrlResource */ export interface LoginAsCustomerUrlResource { /** * * @type {string} * @memberof LoginAsCustomerUrlResource */ url: string; } /** * Check if a given object implements the LoginAsCustomerUrlResource interface. */ export declare function instanceOfLoginAsCustomerUrlResource(value: object): value is LoginAsCustomerUrlResource; export declare function LoginAsCustomerUrlResourceFromJSON(json: any): LoginAsCustomerUrlResource; export declare function LoginAsCustomerUrlResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginAsCustomerUrlResource; export declare function LoginAsCustomerUrlResourceToJSON(json: any): LoginAsCustomerUrlResource; export declare function LoginAsCustomerUrlResourceToJSONTyped(value?: LoginAsCustomerUrlResource | null, ignoreDiscriminator?: boolean): any;