ApiInfoDto

data class ApiInfoDto(val hostname: String? = null, val version: String? = null, val status: String? = null, val environment: String? = null, val name: String? = null, val bootedAt: OffsetDateTime? = null, val baseUrl: String? = null, val endpoints: ApiInfoDtoEndpoints? = null)

Parameters

hostname
version
status
environment
name
bootedAt
baseUrl
endpoints

Constructors

Link copied to clipboard
constructor(hostname: String? = null, version: String? = null, status: String? = null, environment: String? = null, name: String? = null, bootedAt: OffsetDateTime? = null, baseUrl: String? = null, endpoints: ApiInfoDtoEndpoints? = null)

Properties

Link copied to clipboard
@SerializedName(value = "base_url")
val baseUrl: String? = null
Link copied to clipboard
@SerializedName(value = "booted_at")
val bootedAt: OffsetDateTime? = null
Link copied to clipboard
@SerializedName(value = "endpoints")
val endpoints: ApiInfoDtoEndpoints? = null
Link copied to clipboard
@SerializedName(value = "environment")
val environment: String? = null
Link copied to clipboard
@SerializedName(value = "hostname")
val hostname: String? = null
Link copied to clipboard
@SerializedName(value = "name")
val name: String? = null
Link copied to clipboard
@SerializedName(value = "status")
val status: String? = null
Link copied to clipboard
@SerializedName(value = "version")
val version: String? = null