Method

public struct Method : Decodable, Encodable

Undocumented

  • OAuth2 token issued by the Yandex.Passport in the format Bearer [token].

    Declaration

    Swift

    public let passportAuthorization: String
  • Merchant client key, issued in merchant’s personal account, in the format Basic [data].

    Declaration

    Swift

    public let merchantClientAuthorization: String
  • ID the process of obtaining a merchant checkout token payment.

    Declaration

    Swift

    public let processId: String
  • Creates instance of CheckoutTokenIssueExecute.Method.

    Declaration

    Swift

    public init(passportAuthorization: String,
                merchantClientAuthorization: String,
                processId: String)

    Parameters

    passportAuthorization

    OAuth2 token issued by the Yandex.Passport in the format Bearer [token].

    merchantClientAuthorization

    Merchant client key, issued in merchant’s personal account, in the format Basic [data].

    processId

    ID the process of obtaining a merchant checkout token payment.

  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws
  • Declaration

    Swift

    public var hostProviderKey: String { get }
  • Declaration

    Swift

    public var httpMethod: HTTPMethod { get }
  • Declaration

    Swift

    public var parametersEncoding: ParametersEncoding { get }
  • Declaration

    Swift

    public func urlInfo(from hostProvider: HostProvider) throws -> URLInfo
  • Declaration

    Swift

    public var headers: Headers { get }