Place
public struct Place : Codable, Equatable
Place object specifically for Order object.
Note
This structure is different from thePlace object in the Places Module,
but its id property can be used to obtain a Place object from the API.
-
Value representing the entity id
Declaration
Swift
public var id: Int -
Name of the place
Declaration
Swift
public var name: String -
Label of the place
Declaration
Swift
public var label: String -
Undocumented
Declaration
Swift
public init(id: Int, name: String, label: String) -
Declaration
Swift
public init(from decoder: Decoder) throws
View on GitHub
Place Structure Reference