/** * 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 LoginAdminRequest */ export interface LoginAdminRequest { /** * * @type {string} * @memberof LoginAdminRequest */ email: string; /** * * @type {string} * @memberof LoginAdminRequest */ password: string; } /** * Check if a given object implements the LoginAdminRequest interface. */ export declare function instanceOfLoginAdminRequest(value: object): value is LoginAdminRequest; export declare function LoginAdminRequestFromJSON(json: any): LoginAdminRequest; export declare function LoginAdminRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoginAdminRequest; export declare function LoginAdminRequestToJSON(json: any): LoginAdminRequest; export declare function LoginAdminRequestToJSONTyped(value?: LoginAdminRequest | null, ignoreDiscriminator?: boolean): any;