Class: MsgClientSetIgnoreFriend
- Inherits:
-
Object
- Object
- MsgClientSetIgnoreFriend
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientSetIgnoreFriend in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#ignore ⇒ byte
Gets the ignore variable.
-
#ignore=(value) ⇒ Object
Sets the ignore variable.
-
#initialize ⇒ MsgClientSetIgnoreFriend
constructor
Instantiate a MsgClientSetIgnoreFriend object.
-
#my_steam_id ⇒ ulong
Gets the my_steam_id variable.
-
#my_steam_id=(value) ⇒ Object
Sets the my_steam_id variable.
-
#steam_id_friend ⇒ ulong
Gets the steam_id_friend variable.
-
#steam_id_friend=(value) ⇒ Object
Sets the steam_id_friend variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientSetIgnoreFriend
Instantiate a MsgClientSetIgnoreFriend object
1857 1858 1859 |
# File 'lib/steamd/generated/steammsg.rb', line 1857 def initialize super([{:name=>"my_steam_id", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_friend", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"ignore", :type=>"byte", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end |
Instance Method Details
#ignore ⇒ byte
Note:
defaults to
Gets the ignore variable.
1895 1896 1897 |
# File 'lib/steamd/generated/steammsg.rb', line 1895 def ignore @variables['ignore'][:value] end |
#ignore=(value) ⇒ Object
Sets the ignore variable.
1902 1903 1904 |
# File 'lib/steamd/generated/steammsg.rb', line 1902 def ignore=(value) @variables['ignore'][:value] = value end |
#my_steam_id ⇒ ulong
Note:
defaults to
Gets the my_steam_id variable.
1865 1866 1867 |
# File 'lib/steamd/generated/steammsg.rb', line 1865 def my_steam_id @variables['my_steam_id'][:value] end |
#my_steam_id=(value) ⇒ Object
Sets the my_steam_id variable.
1872 1873 1874 |
# File 'lib/steamd/generated/steammsg.rb', line 1872 def my_steam_id=(value) @variables['my_steam_id'][:value] = value end |
#steam_id_friend ⇒ ulong
Note:
defaults to
Gets the steam_id_friend variable.
1880 1881 1882 |
# File 'lib/steamd/generated/steammsg.rb', line 1880 def steam_id_friend @variables['steam_id_friend'][:value] end |
#steam_id_friend=(value) ⇒ Object
Sets the steam_id_friend variable.
1887 1888 1889 |
# File 'lib/steamd/generated/steammsg.rb', line 1887 def steam_id_friend=(value) @variables['steam_id_friend'][:value] = value end |