Class: MsgClientSetIgnoreFriendResponse
- Inherits:
-
Object
- Object
- MsgClientSetIgnoreFriendResponse
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientSetIgnoreFriendResponse in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#initialize ⇒ MsgClientSetIgnoreFriendResponse
constructor
Instantiate a MsgClientSetIgnoreFriendResponse object.
-
#result ⇒ EResult
Gets the result variable.
-
#result=(value) ⇒ Object
Sets the result variable.
-
#unknown ⇒ ulong
Gets the unknown variable.
-
#unknown=(value) ⇒ Object
Sets the unknown variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientSetIgnoreFriendResponse
Instantiate a MsgClientSetIgnoreFriendResponse object
1914 1915 1916 |
# File 'lib/steamd/generated/steammsg.rb', line 1914 def initialize super([{:name=>"unknown", :type=>"ulong", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"result", :type=>"EResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end |
Instance Method Details
#result ⇒ EResult
Note:
defaults to
Gets the result variable.
1937 1938 1939 |
# File 'lib/steamd/generated/steammsg.rb', line 1937 def result @variables['result'][:value] end |
#result=(value) ⇒ Object
Sets the result variable.
1944 1945 1946 |
# File 'lib/steamd/generated/steammsg.rb', line 1944 def result=(value) @variables['result'][:value] = value end |
#unknown ⇒ ulong
Note:
defaults to
Gets the unknown variable.
1922 1923 1924 |
# File 'lib/steamd/generated/steammsg.rb', line 1922 def unknown @variables['unknown'][:value] end |
#unknown=(value) ⇒ Object
Sets the unknown variable.
1929 1930 1931 |
# File 'lib/steamd/generated/steammsg.rb', line 1929 def unknown=(value) @variables['unknown'][:value] = value end |