Module Values.IntegrationSummarySource

Contains summary information about an integration.

Sourcetype nonrec t = {
  1. integrationId : String_.t option;
    (*

    The unique identifier of the integration.

    *)
  2. installationId : String_.t option;
    (*

    The installation identifier from the integration provider.

    *)
  3. provider : Provider.t option;
    (*

    The integration provider.

    *)
  4. providerType : ProviderType.t option;
    (*

    The type of the integration provider.

    *)
  5. displayName : String_.t option;
    (*

    The display name of the integration.

    *)
}
Sourceval make : ?integrationId:??? -> ?installationId:??? -> ?provider:??? -> ?providerType:??? -> ?displayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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