opti/panda_doc

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

Summary

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

module PandaDoc
  module Objects
    class Session < Base
      attribute :id, Types::Coercible::String
      attribute :expires_at, Types::Params::DateTime
    end
  end
end