UserProfile.kt
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)
package org.openapitools.internal.model
import com.squareup.moshi.Json
import org.openapitools.internal.model.UserPreferences
/**
*
*
* @param username
* @param preferences
*/
data class UserProfile(
@Json(name = "username")
val username: kotlin.String,
@Json(name = "preferences")
val preferences: UserPreferences,
)