ServiceCreateResponse

@Serializable
data class ServiceCreateResponse(val ID: String? = null, val warnings: List<String>? = null)

contains the information returned to a client on the creation of a new service.

Parameters

ID

The ID of the created service.

warnings

Optional warning message. FIXME(thaJeztah): this should have \"omitempty\" in the generated type.

Constructors

Link copied to clipboard
constructor(ID: String? = null, warnings: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "ID")
val ID: String?
Link copied to clipboard
@SerialName(value = "Warnings")
val warnings: List<String>?