americanexpress/xcode-result-bundle-processor

View on GitHub
lib/xcoderesultbundleprocessor/slf0/model/dvtdocumentlocation.rb

Summary

Maintainability
A
0 mins
Test Coverage
module XcodeResultBundleProcessor
  module SLF0
    module Model
      class DVTDocumentLocation < KeywordStruct.new(:document_url_string,
                                                    :timestamp)

        def self.deserialize(tokens)
          self.new(
              document_url_string: tokens.shift,
              timestamp:           tokens.shift,
          )
        end
      end
    end
  end
end