class Calendly::Invitee
Calendly's invitee model. An individual who has been invited to meet with a Calendly
member.
Constants
- ASSOCIATION
- TIME_FIELDS
- UUID_RE
Attributes
@return [String] Link to cancelling the event for the invitee.
@return [InviteeCancellation] Provides data pertaining to the cancellation of the Invitee
.
@return [Time] Moment when user record was first created.
@return [String] The invitee's email address.
@return [Event] Reference to Event
associated with this invitee.
@return [String] The first name of the invitee who booked the event when the event type is configured to use separate fields for first name and last name. Null when event type is configured to use a single field for name.
@return [String] The last name of the invitee who booked the event when the event type is configured to use separate fields for first name and last name. Null when event type is configured to use a single field for name.
@return [String] The invitee's human-readable name.
@return [String, nil] Link to new invitee, after reschedule.
@return [String, nil] Reference to old Invitee
instance that got rescheduled.
@return [InviteePayment] Invitee
payment.
@return [Array<Calendly::InviteeQuestionAndAnswer>] A collection of form responses from the invitee.
@return [String] Link to rescheduling the event for the invitee.
@return [Boolean] Indicates if this invitee has rescheduled. If true, a reference to the new Invitee
instance is provided in the new_invitee
field.
@return [String] Whether the invitee has canceled or is still active.
@return [String] Text (SMS) reminder phone number.
@return [String] Timezone offest to use when presenting time information to invitee.
@return [Calendly::InviteeTracking]
@return [Time] Moment when user record was last updated.
@return [String] Canonical resource reference.
@return [String] unique id of the Invitee
object.
Public Instance Methods
Get Event
Invitee
associated with self.
@return [Calendly::Invitee] @raise [Calendly::Error] if the event.uuid is empty. @raise [Calendly::Error] if the uuid is empty. @raise [Calendly::ApiError] if the api returns error code. @since 0.1.0
# File lib/calendly/models/invitee.rb, line 118 def fetch ev_uuid = event.uuid if event client.event_invitee ev_uuid, uuid end