Skip to content
mauryaratan edited this page Feb 5, 2023 · 1 revision

Order

In Lemon Squeezy, an order is created when a customer purchases a product.

public struct Order: Codable, Identifiable 

An order belongs to a Store and can have many Order Items, Subscriptions and License Keys.

Inheritance

Codable, Identifiable

Nested Type Aliases

ID

public typealias ID = String

Properties

id

The unique identifier of this user.

public let id: ID

type

The type of the resource.

public let type: String

attributes

An object representing the resource data.

public let attributes: Attributes
Types
Global Functions
Clone this wiki locally