Sha256: f32be1c40b3c5f5be834802a1a71d13e8ef55cb916500e503ffc302bdc4847d0
Contents?: true
Size: 548 Bytes
Versions: 5
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true require_relative 'subsidiary' module LedgerSync 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 attribute :lastModifiedDate, type: Type::String references_one :subsidiary, to: Subsidiary end end end
Version data entries
5 entries across 5 versions & 1 rubygems