Sha256: 96301199f4ad5b869e1df77043ded68095a8d7f73b734ba1f17af23e0b4642a1

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

module Qismo
  #
  # Agent model
  #
  # @!attribute id [Integer]
  # @!attribute email [String]
  # @!attribute name [String]
  # @!attribute authentication_token [String]
  # @!attribute created_at [String]
  # @!attribute updated_at [String]
  # @!attribute sdk_email [String]
  # @!attribute sdk_key [String]
  # @!attribute is_available [TrueClass, FalseClass]
  # @!attribute type [Integer]
  # @!attribute avatar_url [String]
  # @!attribute app_id [Integer]
  # @!attribute is_verified [TrueClass, FalseClass]
  # @!attribute notifications_room_id [String]
  # @!attribute bubble_color [String, nil]
  # @!attribute qismo_key [String]
  # @!attribute direct_login_token [String]
  # @!attribute last_login [String]
  # @!attribute force_offline [TrueClass, FalseClass]
  # @!attribute deleted_at [String, nil]
  # @!attribute type_as_string [String]
  # @!attribute assigned_rules [Array<String>]
  #
  class Agent < Base
    # @!parse
    #   extend Resources::AgentResource
    extend Resources::AgentResource
  end

  module Operations
    # @return [Qismo::Agent::Class]
    def agent
      Qismo::Agent
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
qismo-0.1.8 lib/qismo/models/agent.rb
qismo-0.1.5 lib/qismo/models/agent.rb
qismo-0.1.4 lib/qismo/models/agent.rb
qismo-0.1.2 lib/qismo/models/agent.rb
qismo-0.1.1 lib/qismo/models/agent.rb
qismo-0.1.0 lib/qismo/models/agent.rb