Module Values.SAMLIdpSource

Specifies the SAML Identity Provider's 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 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