Class: Telnyx::Models::AI::Missions::Runs::PlanAddStepsToPlanParams::Step
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(description:, sequence:, step_id:, metadata: nil, parent_step_id: nil) ⇒ Object
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/telnyx/models/ai/missions/runs/plan_add_steps_to_plan_params.rb', line 35
class Step < Telnyx::Internal::Type::BaseModel
required :description, String
required :sequence, Integer
required :step_id, String
optional :metadata, Telnyx::Internal::Type::HashOf[Telnyx::Internal::Type::Unknown]
optional :parent_step_id, String
end
|
Instance Attribute Details
#description ⇒ String
39
|
# File 'lib/telnyx/models/ai/missions/runs/plan_add_steps_to_plan_params.rb', line 39
required :description, String
|
#parent_step_id ⇒ String?
59
|
# File 'lib/telnyx/models/ai/missions/runs/plan_add_steps_to_plan_params.rb', line 59
optional :parent_step_id, String
|
#sequence ⇒ Integer
44
|
# File 'lib/telnyx/models/ai/missions/runs/plan_add_steps_to_plan_params.rb', line 44
required :sequence, Integer
|
#step_id ⇒ String
49
|
# File 'lib/telnyx/models/ai/missions/runs/plan_add_steps_to_plan_params.rb', line 49
required :step_id, String
|