Module Values.AccountJiraConfigurationOutputSource

Account-level: Output configuration of the Jira integration.

Sourcetype nonrec t = {
  1. integrationStatus : IntegrationStatus.t option;
    (*

    Account-level: Configuration status of the Jira integration.

    *)
  2. issueManagementStatus : AccountJiraIssueManagementStatus.t option;
    (*

    Account-level: Jira issue management status.

    *)
  3. issueManagementType : IssueManagementType.t option;
    (*

    Account-level: Jira issue management type.

    *)
  4. subdomain : Subdomain.t option;
    (*

    Account-level: Jira subdomain URL.

    *)
  5. jiraProjectKey : JiraProjectKey.t option;
    (*

    Account-level: Jira project key to sync workloads to.

    *)
  6. statusMessage : StatusMessage.t option;
    (*

    Account-level: Status message on configuration of the Jira integration.

    *)
}
Sourceval make : ?integrationStatus:??? -> ?issueManagementStatus:??? -> ?issueManagementType:??? -> ?subdomain:??? -> ?jiraProjectKey:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Subdomain.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