GetItemCollectionsRequest

@Serializable
data class GetItemCollectionsRequest(val itemId: UUID, val userId: UUID? = null, val startIndex: Int? = null, val limit: Int? = null, val fields: Collection<ItemFields>? = null)

The collections that include the specified item.

Constructors

Link copied to clipboard
constructor(itemId: UUID, userId: UUID? = null, startIndex: Int? = null, limit: Int? = null, fields: Collection<ItemFields>? = null)

Properties

Link copied to clipboard
@SerialName(value = "fields")
val fields: Collection<ItemFields>?

Optional. Specify additional fields of information to return in the output.

Link copied to clipboard
@SerialName(value = "itemId")
val itemId: UUID

The item id.

Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?

Optional. The maximum number of records to return.

Link copied to clipboard
@SerialName(value = "startIndex")
val startIndex: Int?

Optional. The index of the first record in the output.

Link copied to clipboard
@SerialName(value = "userId")
val userId: UUID?

Optional. Filter by user id, and attach user data.