Class: Google::Apis::AdminDirectoryV1::Notifications

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

Overview

Template for notifications list response.

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

Returns a new instance of Notifications.



2354
2355
2356
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2354

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

Instance Attribute Details

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


2332
2333
2334
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2332

def etag
  @etag
end

#itemsArray<Google::Apis::AdminDirectoryV1::Notification>

List of notifications in this page. Corresponds to the JSON property items



2337
2338
2339
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2337

def items
  @items
end

#kindString

The type of the resource. Corresponds to the JSON property kind

Returns:

  • (String)


2342
2343
2344
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2342

def kind
  @kind
end

#next_page_tokenString

Token for fetching the next page of notifications. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2347
2348
2349
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2347

def next_page_token
  @next_page_token
end

#unread_notifications_countFixnum

Number of unread notification for the domain. Corresponds to the JSON property unreadNotificationsCount

Returns:

  • (Fixnum)


2352
2353
2354
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2352

def unread_notifications_count
  @unread_notifications_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2359
2360
2361
2362
2363
2364
2365
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2359

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unread_notifications_count = args[:unread_notifications_count] if args.key?(:unread_notifications_count)
end