@Serializable
data class JiraTokenResponse(val token: String?, val isImsUserKnown: Boolean, val cloudIds: List<JiraCloudId>? = null, val type: String? = null) : BaseResponseType

Response of the getIMSToken login endpoint

Parameters

token

Token if available

isImsUserKnown

True if the user exists and just has no token

cloudIds

List of cloud ids

type

Type of the token

Constructors

Link copied to clipboard
constructor(token: String?, isImsUserKnown: Boolean, cloudIds: List<JiraCloudId>? = null, type: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
open override val isImsUserKnown: Boolean
Link copied to clipboard
open override val token: String?
Link copied to clipboard
val type: String?