class Google::Apis::AnalyticsV3::UserDeletionRequest
JSON template for a user deletion request resource.
Attributes
deletion_request_time[RW]
This marks the point in time for which all user data before should be deleted Corresponds to the JSON property `deletionRequestTime` @return [DateTime]
firebase_project_id[RW]
Firebase Project Id
Corresponds to the JSON property `firebaseProjectId` @return [String]
id[RW]
User ID. Corresponds to the JSON property `id` @return [Google::Apis::AnalyticsV3::UserDeletionRequest::Id]
kind[RW]
Value is “analytics#userDeletionRequest”. Corresponds to the JSON property `kind` @return [String]
property_id[RW]
Property ID Corresponds to the JSON property `propertyId` @return [String]
web_property_id[RW]
Web property ID of the form UA-XXXXX-YY. Corresponds to the JSON property `webPropertyId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 5338 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analytics_v3/classes.rb, line 5343 def update!(**args) @deletion_request_time = args[:deletion_request_time] if args.key?(:deletion_request_time) @firebase_project_id = args[:firebase_project_id] if args.key?(:firebase_project_id) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @property_id = args[:property_id] if args.key?(:property_id) @web_property_id = args[:web_property_id] if args.key?(:web_property_id) end