class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest
Request message for BatchCreateUserLinks RPC.
Attributes
Optional. If set, then email the new users notifying them that they've been granted permissions to the resource. Regardless of whether this is set or not, notify_new_user field inside each individual request is ignored. Corresponds to the JSON property `notifyNewUsers` @return [Boolean]
Optional. If set, then email the new users notifying them that they've been granted permissions to the resource. Regardless of whether this is set or not, notify_new_user field inside each individual request is ignored. Corresponds to the JSON property `notifyNewUsers` @return [Boolean]
Required. The requests specifying the user links to create. A maximum of 1000 user links can be created in a batch. Corresponds to the JSON property `requests` @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateUserLinkRequest>]
Public Class Methods
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 344 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 349 def update!(**args) @notify_new_users = args[:notify_new_users] if args.key?(:notify_new_users) @requests = args[:requests] if args.key?(:requests) end