/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * 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 ProfileData */ export interface ProfileData { /** * * @type {number} * @memberof ProfileData */ userId: number; /** * * @type {string} * @memberof ProfileData */ updatedAt?: string; /** * * @type {string} * @memberof ProfileData */ name?: string; /** * * @type {string} * @memberof ProfileData */ firstName?: string; /** * * @type {string} * @memberof ProfileData */ lastName?: string; /** * * @type {string} * @memberof ProfileData */ birthday?: string; /** * * @type {string} * @memberof ProfileData */ gender?: string; /** * * @type {string} * @memberof ProfileData */ language?: string; /** * * @type {string} * @memberof ProfileData */ units?: string; } /** * Check if a given object implements the ProfileData interface. */ export declare function instanceOfProfileData(value: object): value is ProfileData; export declare function ProfileDataFromJSON(json: any): ProfileData; export declare function ProfileDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfileData; export declare function ProfileDataToJSON(value?: ProfileData | null): any;