Sha256: 2d1873e8ca23418c62916fd608d9aa0ae1e123a417f4d102083d9637aca0daec
Contents?: true
Size: 562 Bytes
Versions: 2
Compression:
Stored size: 562 Bytes
Contents
module TD::Types # A token for Apple Push Notification service VoIP notifications. # # @attr device_token [TD::Types::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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/device_token/apple_push_vo_ip.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/device_token/apple_push_vo_ip.rb |