Sha256: 2f83b8a1a771ce53c73b2e7219a2f14ba653dc2574d951994fc324587b01a4e9

Contents?: true

Size: 551 Bytes

Versions: 3

Compression:

Stored size: 551 Bytes

Contents

module TD::Types
  # A token for Apple Push Notification service VoIP notifications.
  #
  # @attr device_token [String, nil] Device token; may be empty to de-register a device.
  # @attr is_app_sandbox [Boolean] True, if App Sandbox is enabled.
  # @attr encrypt [Boolean] True, if push notifications should be additionally encrypted.
  class DeviceToken::ApplePushVoIP < DeviceToken
    attribute :device_token, TD::Types::String.optional.default(nil)
    attribute :is_app_sandbox, TD::Types::Bool
    attribute :encrypt, TD::Types::Bool
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/device_token/apple_push_vo_ip.rb
tdlib-ruby-2.2.0 lib/tdlib/types/device_token/apple_push_vo_ip.rb
tdlib-ruby-2.1.0 lib/tdlib/types/device_token/apple_push_vo_ip.rb