Class: Google::Apis::CloudcontrolspartnerV1::CustomerOnboardingStep
- Inherits:
-
Object
- Object
- Google::Apis::CloudcontrolspartnerV1::CustomerOnboardingStep
- 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
-
#completion_state ⇒ String
Output only.
-
#completion_time ⇒ String
The completion time of the onboarding step Corresponds to the JSON property
completionTime
. -
#start_time ⇒ String
The starting time of the onboarding step Corresponds to the JSON property
startTime
. -
#step ⇒ String
The onboarding step Corresponds to the JSON property
step
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerOnboardingStep
constructor
A new instance of CustomerOnboardingStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomerOnboardingStep
Returns a new instance of CustomerOnboardingStep.
236 237 238 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 236 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_state ⇒ String
Output only. Current state of the step
Corresponds to the JSON property completionState
219 220 221 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 219 def completion_state @completion_state end |
#completion_time ⇒ String
The completion time of the onboarding step
Corresponds to the JSON property completionTime
224 225 226 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 224 def completion_time @completion_time end |
#start_time ⇒ String
The starting time of the onboarding step
Corresponds to the JSON property startTime
229 230 231 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 229 def start_time @start_time end |
#step ⇒ String
The onboarding step
Corresponds to the JSON property step
234 235 236 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 234 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
241 242 243 244 245 246 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 241 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 |