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