Type Alias AppointmentCreateUpdateDto

AppointmentCreateUpdateDto: {
    calendarId: string;
    locationId: string;
    contactId: string;
    startTime: string;
    endTime?: string;
    title?: string;
    meetingLocationType?: CalendarMeetingLocationTypes;
    appointmentStatus?: string;
    assignedUserId?: string;
    address?: string;
    ignoreDateRange?: boolean;
    toNotify?: boolean;
    rrule?: string;
}

Type declaration

  • calendarId: string
  • locationId: string
  • contactId: string
  • startTime: string
  • OptionalendTime?: string
  • Optionaltitle?: string
  • OptionalmeetingLocationType?: CalendarMeetingLocationTypes
  • OptionalappointmentStatus?: string
  • OptionalassignedUserId?: string
  • Optionaladdress?: string
  • OptionalignoreDateRange?: boolean
  • OptionaltoNotify?: boolean
  • Optionalrrule?: string