CashLoadingLocationsQuery

public struct CashLoadingLocationsQuery : Sendable

The cash loading locations query model.

  • The postal code of the location.

    Declaration

    Swift

    public let postalCode: String?
  • The store latitude.

    Declaration

    Swift

    public let latitude: String?
  • The store longitude.

    Declaration

    Swift

    public let longitude: String?
  • The distance from the center of geocoded search criteria in miles.

    Declaration

    Swift

    public let radius: Double?
  • The store address.

    Declaration

    Swift

    public let address: String?
  • The number of items per page.

    Declaration

    Swift

    public let limit: Int?
  • The unique identifier of the store set by the network.

    Declaration

    Swift

    public let storeNetworkId: String?
  • Auxiliary constructor

    Declaration

    Swift

    public init(
        postalCode: String? = nil,
        latitude: String? = nil,
        longitude: String? = nil,
        radius: Double? = nil,
        address: String? = nil,
        limit: Int? = nil,
        storeNetworkId: String? = nil
    )

    Parameters

    postalCode

    The postal code of the location.

    latitude

    The store latitude.

    longitude

    The store longitude.

    radius

    The distance from the center of geocoded search criteria in miles.

    address

    The store address.

    limit

    The number of items per page.

    storeNetworkId

    The unique identifier of the store set by the network.