AuthObject

data class AuthObject(val tags: List<String>? = null, val paths: List<String>? = null)

Represents an authorization object.

Constructors

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

Properties

Link copied to clipboard
val paths: List<String>? = null

The list of paths associated with the authorization object.

Link copied to clipboard
val tags: List<String>? = null

The list of tags associated with the authorization object.