Sha256: 3de34ce47df55f407934a8743f56e530236924e0c24c6c7e784c38b51e80c3b9

Contents?: true

Size: 633 Bytes

Versions: 4

Compression:

Stored size: 633 Bytes

Contents

# frozen_string_literal: true

require 'we_ship_client/entities/base'

module WeShipClient
  module Entities
    module Responses
      # The proof of delivery data of a single order.
      class ProofOfDelivery < Base
        attribute :additional_information, Types::Strict::String.optional.default(nil)
        attribute :delivery_date, Types::Strict::String.optional.default(nil)
        attribute :signature, Types::Strict::String.optional.default(nil)
        attribute :signer_name, Types::Strict::String.optional.default(nil)
        attribute :visual, Types::Strict::String.optional.default(nil)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
we_ship_client-1.2.0 lib/we_ship_client/entities/responses/proof_of_delivery.rb
we_ship_client-1.1.1 lib/we_ship_client/entities/responses/proof_of_delivery.rb
we_ship_client-1.1.0 lib/we_ship_client/entities/responses/proof_of_delivery.rb
we_ship_client-1.0.0 lib/we_ship_client/entities/responses/proof_of_delivery.rb