CashPickupLocation

public struct CashPickupLocation : Codable

Cash pickup location model.

  • The unique UUID of the cash pickup location.

    Declaration

    Swift

    public var locationUuid: String
  • The name of the cash pickup location.

    Declaration

    Swift

    public var name: String
  • The address of the cash pickup location.

    Declaration

    Swift

    public var address: String?
  • The network to which this cash pickup location belongs.

    Declaration

    Swift

    public var network: String
  • The type of location.

    Declaration

    Swift

    public var typeString: String
  • The type of location. Check typeString if nil.

    Declaration

    Swift

    public var type: CashPickupLocationType? { get }