Module Values.JiraCloudDetailSource

Information about the configuration and status of a Jira Cloud integration.

Sourcetype nonrec t = {
  1. cloudId : NonEmptyString.t option;
    (*

    The cloud id of the Jira Cloud.

    *)
  2. projectKey : NonEmptyString.t option;
    (*

    The projectKey of Jira Cloud.

    *)
  3. domain : NonEmptyString.t option;
    (*

    The URL domain of your Jira Cloud instance.

    *)
  4. authUrl : NonEmptyString.t option;
    (*

    The URL to provide to customers for OAuth auth code flow.

    *)
  5. authStatus : ConnectorAuthStatus.t option;
    (*

    The status of the authorization between Jira Cloud and the service.

    *)
}
Sourceval make : ?cloudId:??? -> ?projectKey:??? -> ?domain:??? -> ?authUrl:??? -> ?authStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t