Sha256: f632d6adbfb6004ee508cc500e4e0a8a0f3ed87b711d63ff7492d405166f5ae0

Contents?: true

Size: 782 Bytes

Versions: 3

Compression:

Stored size: 782 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  # YouCanBookMe's ProfileTeamMember model.
  class ProfileTeamMember
    include ModelUtils

    ASSOCIATION = {
      targetCalendar: ProfileCalendar
    }.freeze

    # @return [String]
    attr_accessor :account
    # @return [String]
    attr_accessor :calendarId
    # @return [String]
    attr_accessor :description
    # @return [String]
    attr_accessor :email
    # @return [String]
    attr_accessor :id
    # @return [String]
    attr_accessor :name
    # @return [String]
    attr_accessor :pic
    # @return [YouCanBookMe::ProfileCalendar]
    attr_accessor :targetCalendar
    # @return [String]
    attr_accessor :targetCalendarTimeZone
    # @return [Boolean]
    attr_accessor :targetCalendarWriteable
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
youcanbookme-0.0.3.alpha lib/youcanbookme/models/profile_team_member.rb
youcanbookme-0.0.2.alpha lib/youcanbookme/models/profile_team_member.rb
youcanbookme-0.0.1.alpha lib/youcanbookme/models/profile_team_member.rb