Class: Google::Apis::FcmV1::WebpushConfig

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

Overview

Webpush protocol options.

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) ⇒ WebpushConfig

Returns a new instance of WebpushConfig.



927
928
929
# File 'generated/google/apis/fcm_v1/classes.rb', line 927

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

Instance Attribute Details

#dataHash<String,String>

Arbitrary key/value payload. If present, it will override google.firebase.fcm.v1.Message.data. Corresponds to the JSON property data

Returns:

  • (Hash<String,String>)


903
904
905
# File 'generated/google/apis/fcm_v1/classes.rb', line 903

def data
  @data
end

#fcm_optionsGoogle::Apis::FcmV1::WebpushFcmOptions

Options for features provided by the FCM SDK for Web. Corresponds to the JSON property fcmOptions



908
909
910
# File 'generated/google/apis/fcm_v1/classes.rb', line 908

def fcm_options
  @fcm_options
end

#headersHash<String,String>

HTTP headers defined in webpush protocol. Refer to Webpush protocol for supported headers, e.g. "TTL": "15". Corresponds to the JSON property headers

Returns:

  • (Hash<String,String>)


915
916
917
# File 'generated/google/apis/fcm_v1/classes.rb', line 915

def headers
  @headers
end

#notificationHash<String,Object>

Web Notification options as a JSON object. Supports Notification instance properties as defined in Web Notification API. If present, "title" and "body" fields override [google.firebase.fcm.v1.Notification.title] and [google.firebase.fcm.v1.Notification.body]. Corresponds to the JSON property notification

Returns:

  • (Hash<String,Object>)


925
926
927
# File 'generated/google/apis/fcm_v1/classes.rb', line 925

def notification
  @notification
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



932
933
934
935
936
937
# File 'generated/google/apis/fcm_v1/classes.rb', line 932

def update!(**args)
  @data = args[:data] if args.key?(:data)
  @fcm_options = args[:fcm_options] if args.key?(:fcm_options)
  @headers = args[:headers] if args.key?(:headers)
  @notification = args[:notification] if args.key?(:notification)
end