Module Values.PartnerIntegrationInfoSource

Describes a partner integration.

Sourcetype nonrec t = {
  1. databaseName : PartnerIntegrationDatabaseName.t option;
    (*

    The name of the database that receives data from a partner.

    *)
  2. partnerName : PartnerIntegrationPartnerName.t option;
    (*

    The name of the partner.

    *)
  3. status : PartnerIntegrationStatus.t option;
    (*

    The partner integration status.

    *)
  4. statusMessage : PartnerIntegrationStatusMessage.t option;
    (*

    The status message provided by the partner.

    *)
  5. createdAt : TStamp.t option;
    (*

    The date (UTC) that the partner integration was created.

    *)
  6. updatedAt : TStamp.t option;
    (*

    The date (UTC) that the partner integration status was last updated by the partner.

    *)
}
Sourceval make : ?databaseName:??? -> ?partnerName:??? -> ?status:??? -> ?statusMessage:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PartnerIntegrationDatabaseName.t | `Timestamp of TStamp.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