AuthParams

public struct AuthParams : Decodable, Encodable

Application authorization parameters

  • Type of application authorization

    See more

    Declaration

    Swift

    public enum AuthParamsType : String, Decodable, Encodable
  • Type of application authorization

    Note

    Must match the settings of the application

    Declaration

    Swift

    public let type: AuthParamsType
  • Request signature or secret, depending on the type

    Declaration

    Swift

    public let value: String
  • Undocumented

    Declaration

    Swift

    public init(type: AuthParamsType, value: String)