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

Store

Everything in Lemon Squeezy belongs to a store. Each store can have multiple products, orders, discounts etc. and is billed separately. You can create a new store via the Lemon Squeezy Dashboard.

public struct Store: Codable, Identifiable 

A store can have many Products, Orders, Subscriptions, Discounts 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