Sha256: ea41866d9a4be8371f09134032652f8bb13dd174ea94507ac28b0b33dc33e7b3

Contents?: true

Size: 577 Bytes

Versions: 3

Compression:

Stored size: 577 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileRemoteAccount
    include ModelUtils

    ASSOCIATION = {
      calendars: ProfileCalendar
    }.freeze

    # @return [String]
    attr_accessor :accountEmail
    # @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.6.alpha lib/youcanbookme/models/profile_remote_account.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/profile_remote_account.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/profile_remote_account.rb