VolumeListResponse

@Serializable
data class VolumeListResponse(val volumes: List<Volume>? = null, val warnings: List<String>? = null)

Volume list response

Parameters

volumes

List of volumes

warnings

Warnings that occurred when fetching the list of volumes.

Constructors

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

Properties

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