/** * 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 { LoginAsCustomerUrlResource } from './LoginAsCustomerUrlResource'; /** * * @export * @interface LoginAsCustomerUrlResourceArrayResponse */ export interface LoginAsCustomerUrlResourceArrayResponse { /** * * @type {Array} * @memberof LoginAsCustomerUrlResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the LoginAsCustomerUrlResourceArrayResponse interface. */ export declare function instanceOfLoginAsCustomerUrlResourceArrayResponse(value: object): value is LoginAsCustomerUrlResourceArrayResponse; export declare function LoginAsCustomerUrlResourceArrayResponseFromJSON(json: any): LoginAsCustomerUrlResourceArrayResponse; export declare function LoginAsCustomerUrlResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginAsCustomerUrlResourceArrayResponse; export declare function LoginAsCustomerUrlResourceArrayResponseToJSON(json: any): LoginAsCustomerUrlResourceArrayResponse; export declare function LoginAsCustomerUrlResourceArrayResponseToJSONTyped(value?: LoginAsCustomerUrlResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;