Class: Google::Apis::BooksV1::Notification

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Notification

Returns a new instance of Notification.



2209
2210
2211
# File 'generated/google/apis/books_v1/classes.rb', line 2209

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

Instance Attribute Details

#bodyString

Corresponds to the JSON property body

Returns:

  • (String)


2129
2130
2131
# File 'generated/google/apis/books_v1/classes.rb', line 2129

def body
  @body
end

#crm_experiment_idsArray<Fixnum>

The list of crm experiment ids. Corresponds to the JSON property crmExperimentIds

Returns:

  • (Array<Fixnum>)


2134
2135
2136
# File 'generated/google/apis/books_v1/classes.rb', line 2134

def crm_experiment_ids
  @crm_experiment_ids
end

#doc_idString

Corresponds to the JSON property doc_id

Returns:

  • (String)


2139
2140
2141
# File 'generated/google/apis/books_v1/classes.rb', line 2139

def doc_id
  @doc_id
end

#doc_typeString

Corresponds to the JSON property doc_type

Returns:

  • (String)


2144
2145
2146
# File 'generated/google/apis/books_v1/classes.rb', line 2144

def doc_type
  @doc_type
end

#dont_show_notificationBoolean Also known as: dont_show_notification?

Corresponds to the JSON property dont_show_notification

Returns:

  • (Boolean)


2149
2150
2151
# File 'generated/google/apis/books_v1/classes.rb', line 2149

def dont_show_notification
  @dont_show_notification
end

#icon_urlString

Corresponds to the JSON property iconUrl

Returns:

  • (String)


2155
2156
2157
# File 'generated/google/apis/books_v1/classes.rb', line 2155

def icon_url
  @icon_url
end

#is_document_matureBoolean Also known as: is_document_mature?

Corresponds to the JSON property is_document_mature

Returns:

  • (Boolean)


2160
2161
2162
# File 'generated/google/apis/books_v1/classes.rb', line 2160

def is_document_mature
  @is_document_mature
end

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


2166
2167
2168
# File 'generated/google/apis/books_v1/classes.rb', line 2166

def kind
  @kind
end

#notification_groupString

Corresponds to the JSON property notificationGroup

Returns:

  • (String)


2171
2172
2173
# File 'generated/google/apis/books_v1/classes.rb', line 2171

def notification_group
  @notification_group
end

#notification_typeString

Corresponds to the JSON property notification_type

Returns:

  • (String)


2176
2177
2178
# File 'generated/google/apis/books_v1/classes.rb', line 2176

def notification_type
  @notification_type
end

#pcampaign_idString

Corresponds to the JSON property pcampaign_id

Returns:

  • (String)


2181
2182
2183
# File 'generated/google/apis/books_v1/classes.rb', line 2181

def pcampaign_id
  @pcampaign_id
end

#reasonString

Corresponds to the JSON property reason

Returns:

  • (String)


2186
2187
2188
# File 'generated/google/apis/books_v1/classes.rb', line 2186

def reason
  @reason
end

#show_notification_settings_actionBoolean Also known as: show_notification_settings_action?

Corresponds to the JSON property show_notification_settings_action

Returns:

  • (Boolean)


2191
2192
2193
# File 'generated/google/apis/books_v1/classes.rb', line 2191

def show_notification_settings_action
  @show_notification_settings_action
end

#target_urlString

Corresponds to the JSON property targetUrl

Returns:

  • (String)


2197
2198
2199
# File 'generated/google/apis/books_v1/classes.rb', line 2197

def target_url
  @target_url
end

#time_to_expire_msFixnum

Corresponds to the JSON property timeToExpireMs

Returns:

  • (Fixnum)


2202
2203
2204
# File 'generated/google/apis/books_v1/classes.rb', line 2202

def time_to_expire_ms
  @time_to_expire_ms
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


2207
2208
2209
# File 'generated/google/apis/books_v1/classes.rb', line 2207

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
# File 'generated/google/apis/books_v1/classes.rb', line 2214

def update!(**args)
  @body = args[:body] if args.key?(:body)
  @crm_experiment_ids = args[:crm_experiment_ids] if args.key?(:crm_experiment_ids)
  @doc_id = args[:doc_id] if args.key?(:doc_id)
  @doc_type = args[:doc_type] if args.key?(:doc_type)
  @dont_show_notification = args[:dont_show_notification] if args.key?(:dont_show_notification)
  @icon_url = args[:icon_url] if args.key?(:icon_url)
  @is_document_mature = args[:is_document_mature] if args.key?(:is_document_mature)
  @kind = args[:kind] if args.key?(:kind)
  @notification_group = args[:notification_group] if args.key?(:notification_group)
  @notification_type = args[:notification_type] if args.key?(:notification_type)
  @pcampaign_id = args[:pcampaign_id] if args.key?(:pcampaign_id)
  @reason = args[:reason] if args.key?(:reason)
  @show_notification_settings_action = args[:show_notification_settings_action] if args.key?(:show_notification_settings_action)
  @target_url = args[:target_url] if args.key?(:target_url)
  @time_to_expire_ms = args[:time_to_expire_ms] if args.key?(:time_to_expire_ms)
  @title = args[:title] if args.key?(:title)
end