Sha256: 0fb13b7dd78ed210bf1174758d9af7ee14ef841b17a2d3797e5dc0b91206496f

Contents?: true

Size: 377 Bytes

Versions: 3

Compression:

Stored size: 377 Bytes

Contents

# frozen_string_literal: true

module YouCanBookMe
  class ProfileAccount
    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.6.alpha lib/youcanbookme/models/profile_account.rb
youcanbookme-0.0.5.alpha lib/youcanbookme/models/profile_account.rb
youcanbookme-0.0.4.alpha lib/youcanbookme/models/profile_account.rb