Sha256: cbf2767cd38dcc067444333dffe3dff2a99900ebd538dce89cacdfa14c5b2a71

Contents?: true

Size: 429 Bytes

Versions: 2

Compression:

Stored size: 429 Bytes

Contents

module TD::Types
  # A token for Firebase Cloud Messaging.
  #
  # @attr token [TD::Types::String, nil] Device registration token; may be empty to de-register a device.
  # @attr encrypt [Boolean] True, if push notifications should be additionally encrypted.
  class DeviceToken::FirebaseCloudMessaging < DeviceToken
    attribute :token, TD::Types::String.optional.default(nil)
    attribute :encrypt, TD::Types::Bool
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/device_token/firebase_cloud_messaging.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/device_token/firebase_cloud_messaging.rb