Module Values.BackendAuthAppleProviderConfigSource

Describes Apple social federation configurations for allowing your app users to sign in using OAuth.

Sourcetype nonrec t = {
  1. clientId : string option;
    (*

    Describes the client_id (also called Services ID) that comes from Apple.

    *)
  2. keyId : string option;
    (*

    Describes the key_id that comes from Apple.

    *)
  3. privateKey : string option;
    (*

    Describes the private_key that comes from Apple.

    *)
  4. teamId : string option;
    (*

    Describes the team_id that comes from Apple.

    *)
}
Sourceval make : ?clientId:??? -> ?keyId:??? -> ?privateKey:??? -> ?teamId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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