Class: Google::Apis::GamesV1::RoomLeaveDiagnostics

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/games_v1/classes.rb,
generated/google/apis/games_v1/representations.rb,
generated/google/apis/games_v1/representations.rb

Overview

This is a JSON template for room leave diagnostics.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RoomLeaveDiagnostics

Returns a new instance of RoomLeaveDiagnostics.



3182
3183
3184
# File 'generated/google/apis/games_v1/classes.rb', line 3182

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#android_network_subtypeFixnum

Android network subtype. http://developer.android.com/reference/android/net/ NetworkInfo.html#getSubtype() Corresponds to the JSON property androidNetworkSubtype

Returns:

  • (Fixnum)


3135
3136
3137
# File 'generated/google/apis/games_v1/classes.rb', line 3135

def android_network_subtype
  @android_network_subtype
end

#android_network_typeFixnum

Android network type. http://developer.android.com/reference/android/net/ NetworkInfo.html#getType() Corresponds to the JSON property androidNetworkType

Returns:

  • (Fixnum)


3141
3142
3143
# File 'generated/google/apis/games_v1/classes.rb', line 3141

def android_network_type
  @android_network_type
end

#ios_network_typeFixnum

iOS network type as defined in Reachability.h. Corresponds to the JSON property iosNetworkType

Returns:

  • (Fixnum)


3146
3147
3148
# File 'generated/google/apis/games_v1/classes.rb', line 3146

def ios_network_type
  @ios_network_type
end

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#roomLeaveDiagnostics. Corresponds to the JSON property kind

Returns:

  • (String)


3152
3153
3154
# File 'generated/google/apis/games_v1/classes.rb', line 3152

def kind
  @kind
end

#network_operator_codeString

The MCC+MNC code for the client's network connection. On Android: http:// developer.android.com/reference/android/telephony/TelephonyManager.html# getNetworkOperator() On iOS, see: https://developer.apple.com/library/ios/ documentation/NetworkingInternet/Reference/CTCarrier/Reference/Reference.html Corresponds to the JSON property networkOperatorCode

Returns:

  • (String)


3160
3161
3162
# File 'generated/google/apis/games_v1/classes.rb', line 3160

def network_operator_code
  @network_operator_code
end

#network_operator_nameString

The name of the carrier of the client's network connection. On Android: http:// developer.android.com/reference/android/telephony/TelephonyManager.html# getNetworkOperatorName() On iOS: https://developer.apple.com/library/ios/ documentation/NetworkingInternet/Reference/CTCarrier/Reference/Reference.html#/ /apple_ref/occ/instp/CTCarrier/carrierName Corresponds to the JSON property networkOperatorName

Returns:

  • (String)


3169
3170
3171
# File 'generated/google/apis/games_v1/classes.rb', line 3169

def network_operator_name
  @network_operator_name
end

#peer_sessionArray<Google::Apis::GamesV1::PeerSessionDiagnostics>

Diagnostics about all peer sessions. Corresponds to the JSON property peerSession



3174
3175
3176
# File 'generated/google/apis/games_v1/classes.rb', line 3174

def peer_session
  @peer_session
end

#sockets_usedBoolean Also known as: sockets_used?

Whether or not sockets were used. Corresponds to the JSON property socketsUsed

Returns:

  • (Boolean)


3179
3180
3181
# File 'generated/google/apis/games_v1/classes.rb', line 3179

def sockets_used
  @sockets_used
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
# File 'generated/google/apis/games_v1/classes.rb', line 3187

def update!(**args)
  @android_network_subtype = args[:android_network_subtype] if args.key?(:android_network_subtype)
  @android_network_type = args[:android_network_type] if args.key?(:android_network_type)
  @ios_network_type = args[:ios_network_type] if args.key?(:ios_network_type)
  @kind = args[:kind] if args.key?(:kind)
  @network_operator_code = args[:network_operator_code] if args.key?(:network_operator_code)
  @network_operator_name = args[:network_operator_name] if args.key?(:network_operator_name)
  @peer_session = args[:peer_session] if args.key?(:peer_session)
  @sockets_used = args[:sockets_used] if args.key?(:sockets_used)
end