Sha256: b30027c4ad2f84fa78310c1e1375db0565210a7e755d550cd2d6ca88208dea5f

Contents?: true

Size: 1.46 KB

Versions: 15

Compression:

Stored size: 1.46 KB

Contents

module Qismo
  # Objects module to handle schema for API response
  #
  module Objects
    # Agent service object
    #
    class AgentService < Qismo::Object
      # @!attribute [r] created_at
      #   @return [String]
      attribute? :created_at, Types::String.optional

      # @!attribute [r] first_comment_id
      #   @return [String]
      attribute? :first_comment_id, Types::String.optional

      # @!attribute [r] first_comment_timestamp
      #   @return [String]
      attribute? :first_comment_timestamp, Types::String.optional

      # @!attribute [r] is_resolved
      #   @return [TrueClass,FalseClass]
      attribute? :is_resolved, Types::Bool.optional

      # @!attribute [r] last_comment_id
      #   @return [String]
      attribute? :last_comment_id, Types::String.optional

      # @!attribute [r] notes
      #   @return [String]
      attribute? :notes, Types::String.optional

      # @!attribute [r] resolved_at
      #   @return [String]
      attribute? :resolved_at, Types::String.optional

      # @!attribute [r] retrieved_at
      #   @return [String]
      attribute? :retrieved_at, Types::String.optional

      # @!attribute [r] room_id
      #   @return [Integer]
      attribute? :room_id, Types::String.optional

      # @!attribute [r] updated_at
      #   @return [String]
      attribute? :updated_at, Types::String.optional

      # @!attribute [r] user_id
      #   @return [Integer]
      attribute? :user_id, Types::Int.optional
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
qismo-0.18.3 lib/qismo/objects/agent_service.rb
qismo-0.18.2 lib/qismo/objects/agent_service.rb
qismo-0.18.1 lib/qismo/objects/agent_service.rb
qismo-0.18.0 lib/qismo/objects/agent_service.rb
qismo-0.17.10 lib/qismo/objects/agent_service.rb
qismo-0.17.9 lib/qismo/objects/agent_service.rb
qismo-0.17.7 lib/qismo/objects/agent_service.rb
qismo-0.17.6 lib/qismo/objects/agent_service.rb
qismo-0.17.5 lib/qismo/objects/agent_service.rb
qismo-0.17.4 lib/qismo/objects/agent_service.rb
qismo-0.17.3 lib/qismo/objects/agent_service.rb
qismo-0.17.2 lib/qismo/objects/agent_service.rb
qismo-0.17.1 lib/qismo/objects/agent_service.rb
qismo-0.17.0 lib/qismo/objects/agent_service.rb
qismo-0.15.0 lib/qismo/objects/agent_service.rb