Sha256: 58bae43f25009028f63f2d292c7a636c3f3cc93384d76b7076dbf858a76bca92

Contents?: true

Size: 428 Bytes

Versions: 3

Compression:

Stored size: 428 Bytes

Contents

# frozen_string_literal: true

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

    ASSOCIATION = {
      remoteAccounts: ProfileRemoteAccount
    }.freeze

    # @return [String]
    attr_accessor :accountId
    # @return [String]
    attr_accessor :email
    # @return [Array<YouCanBookMe::ProfileRemoteAccount>]
    attr_accessor :remoteAccounts
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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