Module Values.SAMLIdpSource

The SAML identity povider information.

Sourcetype nonrec t = {
  1. metadataContent : SAMLMetadata.t;
    (*

    The metadata of the SAML application, in XML format.

    *)
  2. entityId : SAMLEntityId.t;
    (*

    The unique entity ID of the application in the SAML identity provider.

    *)
}
Sourceval context_ : string
Sourceval make : metadataContent:SAMLMetadata.t -> entityId:SAMLEntityId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SAMLMetadata.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