HyperwalletTransfer

public struct HyperwalletTransfer : Codable

Representation of a HyperwalletTransfer

  • A value that identifies the client transfer id.

    Declaration

    Swift

    public let clientTransferId: String
  • The created date

    Declaration

    Swift

    public let createdOn: String?
  • The destination amount

    Declaration

    Swift

    public let destinationAmount: String?
  • The destination currency

    Declaration

    Swift

    public let destinationCurrency: String?
  • The destination amount

    Declaration

    Swift

    public let destinationFeeAmount: String?
  • The destination token

    Declaration

    Swift

    public let destinationToken: String
  • The expiresOn

    Declaration

    Swift

    public let expiresOn: String?
  • The list of foreignExchanges

    Declaration

    Swift

    public let foreignExchanges: [HyperwalletForeignExchange]?
  • The memo

    Declaration

    Swift

    public let memo: String?
  • The notes to add

    Declaration

    Swift

    public let notes: String?
  • The source amount

    Declaration

    Swift

    public let sourceAmount: String?
  • The source currency

    Declaration

    Swift

    public let sourceCurrency: String?
  • The source fee

    Declaration

    Swift

    public let sourceFeeAmount: String?
  • The source token

    Declaration

    Swift

    public let sourceToken: String
  • The transfer status

    Declaration

    Swift

    public let status: HyperwalletTransferStatus?
  • The token

    Declaration

    Swift

    public let token: String?
  • Representation of a HyperwalletTransferStatus

    See more

    Declaration

    Swift

    public enum HyperwalletTransferStatus : String, Codable
  • A helper class to build the HyperwalletTransfer instance.

    See more

    Declaration

    Swift

    public class Builder