Sha256: 290202966b515cb7949de840949eb5ac14b2d7f0ae036e9d74844e53f6daddc6
Contents?: true
Size: 669 Bytes
Versions: 4
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true require_relative 'primary_phone' require_relative 'primary_email_addr' module LedgerSync module Ledgers module QuickBooksOnline class Vendor < QuickBooksOnline::Resource attribute :DisplayName, type: Type::String attribute :GivenName, type: Type::String attribute :MiddleName, type: Type::String attribute :FamilyName, type: Type::String attribute :CompanyName, type: Type::String references_one :PrimaryPhone, to: PrimaryPhone references_one :PrimaryEmailAddr, to: PrimaryEmailAddr def name self.DisplayName end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems