class Google::Apis::StorageV1::Notification

A subscription to receive Google PubSub notifications.

def initialize(**args)

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

def update!(**args)

Update properties of this object
def update!(**args)
  @custom_attributes = args[:custom_attributes] if args.key?(:custom_attributes)
  @etag = args[:etag] if args.key?(:etag)
  @event_types = args[:event_types] if args.key?(:event_types)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @object_name_prefix = args[:object_name_prefix] if args.key?(:object_name_prefix)
  @payload_format = args[:payload_format] if args.key?(:payload_format)
  @self_link = args[:self_link] if args.key?(:self_link)
  @topic = args[:topic] if args.key?(:topic)
end