UserCredentials.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
/**
* Reusable field definitions for username and password constraints
*
* @param username Alphanumeric, underscores, hyphens, and dots only
* @param password
*/
data class UserCredentials(
// Alphanumeric, underscores, hyphens, and dots only
@Json(name = "username")
val username: kotlin.String? = null,
@Json(name = "password")
val password: kotlin.String? = null,
)