PersonalEventContentData
public struct PersonalEventContentData : Content
extension PersonalEventContentData: RCFValidatable
PersonalEventContentData is used for creating and editing a PersonalEvent. Contains all of the fields that a user can modify.
-
The title for the PersonalEvent.
Declaration
Swift
var title: String -
A description of the PersonalEvent.
Declaration
Swift
var description: String? -
The starting time for the PersonalEvent.
Declaration
Swift
var startTime: Date -
The ending time for the PersonalEvent.
Declaration
Swift
var endTime: Date -
The location for the PersonalEvent.
Declaration
Swift
var location: String? -
Users that have been invited to this PersonalEvent. Should not contain the owner.
Declaration
Swift
var participants: [UUID]
-
Declaration
Swift
func runValidations(using decoder: ValidatingDecoder) throws
View on GitHub