You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

modifying-events.md 1.4 kB

1234567891011121314151617181920212223
  1. ---
  2. uid: Guides.GuildEvents.Modifying
  3. title: Modifying Guild Events
  4. ---
  5. # Modifying Events
  6. You can modify events using the `ModifyAsync` method to modify the event, heres the properties you can modify:
  7. | Name | Type | Description |
  8. | ------------ | --------------------------------- | -------------------------------------------- |
  9. | ChannelId | `ulong?` | Gets or sets the channel id of the event. |
  10. | string | `string` | Gets or sets the location of this event. |
  11. | Name | `string` | Gets or sets the name of the event. |
  12. | PrivacyLevel | `GuildScheduledEventPrivacyLevel` | Gets or sets the privacy level of the event. |
  13. | StartTime | `DateTimeOffset` | Gets or sets the start time of the event. |
  14. | EndTime | `DateTimeOffset` | Gets or sets the end time of the event. |
  15. | Description | `string` | Gets or sets the description of the event. |
  16. | Type | `GuildScheduledEventType` | Gets or sets the type of the event. |
  17. | Status | `GuildScheduledEventStatus` | Gets or sets the status of the event. |
  18. > [!NOTE]
  19. > All of these properties are optional.