class Google::Apis::AnalyticsV3::Goal::UrlDestinationDetails::Step
Attributes
name[RW]
Step
name. Corresponds to the JSON property `name` @return [String]
number[RW]
Step
number. Corresponds to the JSON property `number` @return [Fixnum]
url[RW]
URL for this step. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3160 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 3165 def update!(**args) @name = args[:name] if args.key?(:name) @number = args[:number] if args.key?(:number) @url = args[:url] if args.key?(:url) end