Sha256: 09ab1e481dd861192876316bf40e676d2220e7f35c073ac55d0d8490ffa830f0

Contents?: true

Size: 651 Bytes

Versions: 11

Compression:

Stored size: 651 Bytes

Contents

# typed: true
# frozen_string_literal: true

module EML
  module UK
    class Payload
      class Location < ::EML::Payload
        extend T::Sig
        include ISO

        private

        sig { params(name: String).returns(String) }
        attr_accessor :name

        sig { params(address1: String).returns(String) }
        attr_accessor :address1

        sig { params(address2: String).returns(String) }
        attr_accessor :address2

        sig { params(city: String).returns(String) }
        attr_accessor :city

        sig { params(postal_code: String).returns(String) }
        attr_accessor :postal_code
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
eml-2.1.8 lib/eml/uk/payload/location.rb
eml-2.1.7 lib/eml/uk/payload/location.rb
eml-2.1.6 lib/eml/uk/payload/location.rb
eml-2.1.5 lib/eml/uk/payload/location.rb
eml-2.1.4 lib/eml/uk/payload/location.rb
eml-2.1.3 lib/eml/uk/payload/location.rb
eml-2.1.2 lib/eml/uk/payload/location.rb
eml-2.1.1 lib/eml/uk/payload/location.rb
eml-2.1.0 lib/eml/uk/payload/location.rb
eml-2.0.0 lib/eml/uk/payload/location.rb
eml-1.0.0 lib/eml/uk/payload/location.rb