📆CalendarEventRSVP

Properties

PropertyDescriptionType

data

raw data

Object

client

Client

id

Calendar Event RSVP ID

Number

guildID

Guild/server ID

String

channelID

Calendar channel id

String

memberID

RSVP member id

String

status

Status of the RSVP (going, maybe, declined, invited, waitlisted, not responded)

String

_createdAt

Timestamp (unix epoch time) of the rsvp's creation.

Number|null

createdBy

ID of the member that created the rsvp.

String

updatedBy

ID of the member that updated the rsvp (if updated)

String

member

Member that created the rsvp.

createdAt

string representation of the _createdAt timestamp

Date|null

Constructor

new CalendarEventRSVP(rawData, client)
PropertiesDescriptionTypeRequired?

rawData

raw data received from ws and converted to JSON

Object

true

client

Client

true

Do not use this constructor unless you know what you're doing. This constructor is used to return you rawdata into component.

Methods

edit(options)

Edit the calendar rsvp.

PropertiesDescriptionTypeRequired?

options

Edit options

Object

true

options.status

RSVP status (going, maybe, declined, invited, waitlisted, not responded)

String

true

Returns: Promise<CalendarEventRSVP>

delete()

Delete the calendar rsvp.

Returns: Promise<void>

Last updated