/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * UpdateMeRequest allows the signed-in member to manage their own login and profile data. * @export * @interface UpdateMeRequest */ export interface UpdateMeRequest { /** * * @type {string} * @memberof UpdateMeRequest */ email?: string; /** * * @type {string} * @memberof UpdateMeRequest */ firstName?: string; /** * * @type {string} * @memberof UpdateMeRequest */ lastName?: string; /** * * @type {string} * @memberof UpdateMeRequest */ password?: string; } /** * Check if a given object implements the UpdateMeRequest interface. */ export declare function instanceOfUpdateMeRequest(value: object): value is UpdateMeRequest; export declare function UpdateMeRequestFromJSON(json: any): UpdateMeRequest; export declare function UpdateMeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateMeRequest; export declare function UpdateMeRequestToJSON(json: any): UpdateMeRequest; export declare function UpdateMeRequestToJSONTyped(value?: UpdateMeRequest | null, ignoreDiscriminator?: boolean): any;