Skip to content

@my-swu/simulator-client


@my-swu/simulator-client / LimitedEventReference

Interface: LimitedEventReference

Defined in: packages/ts-sdk/src/resources/limited-events.ts:96

Public reference to one Limited Event.

This reference is safe to share for join flows because it does not include a private seat token.

Example:

ts
import type { LimitedEventReference } from '@my-swu/simulator-client'

const 
limitedEventReference
: LimitedEventReference = {
eventId
: 'event_123' }
console
.
log
(
limitedEventReference
)

Example

ts
import type { LimitedEventReference } from '@my-swu/simulator-client'

const draftEventReference: LimitedEventReference = { eventId: 'event_123' }
console.log(draftEventReference.eventId)

See

https://simulator-sdk.my-swu.com/guide/limited-events

Extended by

Properties

eventId

Example:

ts
import type { LimitedEventReference } from '@my-swu/simulator-client'

const 
limitedEventReference
: LimitedEventReference = {
eventId
: 'event_123' }
const {
eventId
} =
limitedEventReference
console
.
log
(
eventId
)

eventId: string

Defined in: packages/ts-sdk/src/resources/limited-events.ts:100

Public Limited Event id.

Released under the MIT License.