Sha256: a46b104ecc7527a3c9519040c1b2f4ddde85e6e5b10a25754e45804f6ab1f12b
Contents?: true
Size: 537 Bytes
Versions: 8
Compression:
Stored size: 537 Bytes
Contents
# frozen_string_literal: true require_relative 'subsidiary' module LedgerSync module Ledgers module NetSuite class Customer < NetSuite::Resource attribute :email, type: LedgerSync::Type::String attribute :companyName, type: LedgerSync::Type::String attribute :firstName, type: LedgerSync::Type::String attribute :lastName, type: LedgerSync::Type::String attribute :phone, type: LedgerSync::Type::String references_one :subsidiary, to: Subsidiary end end end end
Version data entries
8 entries across 8 versions & 1 rubygems