opti/panda_doc

View on GitHub
lib/panda_doc/objects/token.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module PandaDoc
  module Objects
    class Token < Base
      attribute :name, Types::Coercible::String.optional
      attribute? :value, Types::Coercible::String.optional
    end
  end
end