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
postalCodeThe postal code of the location.
latitudeThe store latitude.
longitudeThe store longitude.
radiusThe distance from the center of geocoded search criteria in miles.
addressThe store address.
limitThe number of items per page.
storeNetworkIdThe unique identifier of the store set by the network.
View on GitHub