Class: Google::Apis::CloudcontrolspartnerV1::CustomerOnboardingStep

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudcontrolspartner_v1/classes.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb

Overview

Container for customer onboarding information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomerOnboardingStep

Returns a new instance of CustomerOnboardingStep.



229
230
231
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 229

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

Instance Attribute Details

#completion_stateString

Output only. Current state of the step Corresponds to the JSON property completionState

Returns:

  • (String)


212
213
214
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 212

def completion_state
  @completion_state
end

#completion_timeString

The completion time of the onboarding step Corresponds to the JSON property completionTime

Returns:

  • (String)


217
218
219
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 217

def completion_time
  @completion_time
end

#start_timeString

The starting time of the onboarding step Corresponds to the JSON property startTime

Returns:

  • (String)


222
223
224
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 222

def start_time
  @start_time
end

#stepString

The onboarding step Corresponds to the JSON property step

Returns:

  • (String)


227
228
229
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 227

def step
  @step
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



234
235
236
237
238
239
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 234

def update!(**args)
  @completion_state = args[:completion_state] if args.key?(:completion_state)
  @completion_time = args[:completion_time] if args.key?(:completion_time)
  @start_time = args[:start_time] if args.key?(:start_time)
  @step = args[:step] if args.key?(:step)
end