Sha256: af97c00e7fd334d192366e55de268969377d4ebefade61a30d570c658c6f5049
Contents?: true
Size: 1.02 KB
Versions: 12
Compression:
Stored size: 1.02 KB
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class Customers < DearInventory::Model class Address < DearInventory::Model extend T::Sig fields( TaskID: { name: :task_id, type: :Guid, }, Line1: { name: :line_1, type: :String, }, Line2: { name: :line_2, type: :String, }, City: { name: :city, type: :String, }, State: { name: :state, type: :String, }, Postcode: { name: :postcode, type: :String, }, Country: { name: :country, type: :String, }, Type: { name: :type, type: :String, }, DefaultForType: { name: :default_for_type, type: :Boolean, } ) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems