Sha256: 282a269fa8f9d5a89d82059d443d2bf2eb2bfdc12b1c1ad37e676bac66f78bb8

Contents?: true

Size: 562 Bytes

Versions: 3

Compression:

Stored size: 562 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      calendars: ProfileCalendar
    }

    # @return [Array<YouCanBookMe::ProfileCalendar>]
    attr_accessor :calendars
    # @return [String]
    attr_accessor :id
    # @return [Boolean]
    attr_accessor :lobbySupport
    # @return [String]
    attr_accessor :localAccountEmail
    # @return [String]
    attr_accessor :type
    # @return [String]
    attr_accessor :username
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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