Sha256: 5b6f7f35e9c98ddb8c1223cf485acabca489b67fe26661384576f705e50649d4

Contents?: true

Size: 992 Bytes

Versions: 1

Compression:

Stored size: 992 Bytes

Contents

module Qismo
  module Objects
    class AdminProfile < Qismo::Object
      # @!attribute [r] name
      #   @return [String]
      attribute? :name, Types::String.optional

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

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

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

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

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

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
qismo-0.18.3 lib/qismo/objects/admin_profile.rb