ApiV1PublisherDeploymentsFilesPostRequest

@Serializable
data class ApiV1PublisherDeploymentsFilesPostRequest(val sortField: String, val page: Double? = null, val propertySize: Double? = null, val sortDirection: String? = null, val deploymentIds: List<String>? = null, val pathStarting: String? = null)

Parameters

sortField

The field to sort the results by.

page

The page number.

propertySize

The number of items per page.

sortDirection

The direction of the sorting (asc or desc).

deploymentIds

Optional deployment IDs.

pathStarting

Optional starting path.

Constructors

constructor(sortField: String, page: Double? = null, propertySize: Double? = null, sortDirection: String? = null, deploymentIds: List<String>? = null, pathStarting: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "deploymentIds")
val deploymentIds: List<String>? = null
Link copied to clipboard
@SerialName(value = "page")
val page: Double? = null
Link copied to clipboard
@SerialName(value = "pathStarting")
val pathStarting: String? = null
Link copied to clipboard
@SerialName(value = "size")
val propertySize: Double? = null
Link copied to clipboard
@SerialName(value = "sortDirection")
val sortDirection: String? = null
Link copied to clipboard
@SerialName(value = "sortField")
@Required
val sortField: String