Sha256: 840e2e8e7cbef82393831cdc02a0bca30bba6be047be37599066d2a019250191

Contents?: true

Size: 437 Bytes

Versions: 1

Compression:

Stored size: 437 Bytes

Contents

# typed: strong
# frozen_string_literal: true

module DearInventory
  module Models
    class ShippingAddress < Address
      extend T::Sig

      fields({
        Company: {
          name: :company,
          type: :String,
        },
        Contact: {
          name: :contact,
          type: :String,
        },
        ShipToOther: {
          name: :ship_to_other,
          type: :Boolean,
        },
      })
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dear_inventory-0.2.0 lib/dear_inventory/models/shipping_address.rb