GetProjectTagsPlainArgs

data class GetProjectTagsPlainArgs(val orderBy: String? = null, val project: String, val search: String? = null, val sort: String? = null) : ConvertibleToJava<GetProjectTagsPlainArgs>

A collection of arguments for invoking getProjectTags.

Constructors

Link copied to clipboard
constructor(orderBy: String? = null, project: String, search: String? = null, sort: String? = null)

Properties

Link copied to clipboard
val orderBy: String? = null

Return tags ordered by name or updated fields. Default is updated.

Link copied to clipboard

The ID or URL-encoded path of the project owned by the authenticated user.

Link copied to clipboard
val search: String? = null

Return list of tags matching the search criteria. You can use ^term and term$ to find tags that begin and end with term respectively. No other regular expressions are supported.

Link copied to clipboard
val sort: String? = null

Return tags sorted in asc or desc order. Default is desc.

Functions

Link copied to clipboard
open override fun toJava(): GetProjectTagsPlainArgs