Class: StackOne::Models::Operations::StackoneRpcActionRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/operations/stackone_rpc_action_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(actions_rpc_request_dto:, x_account_id:, x_connector_profile_id: nil, debug: nil) ⇒ StackoneRpcActionRequest

Returns a new instance of StackoneRpcActionRequest.



25
26
27
28
29
30
# File 'lib/stack_one/models/operations/stackone_rpc_action_request.rb', line 25

def initialize(actions_rpc_request_dto:, x_account_id:, x_connector_profile_id: nil, debug: nil)
  @actions_rpc_request_dto = actions_rpc_request_dto
  @x_account_id = 
  @x_connector_profile_id = x_connector_profile_id
  @debug = debug
end

Instance Method Details

#==(other) ⇒ Object



33
34
35
36
37
38
39
40
# File 'lib/stack_one/models/operations/stackone_rpc_action_request.rb', line 33

def ==(other)
  return false unless other.is_a? self.class
  return false unless @actions_rpc_request_dto == other.actions_rpc_request_dto
  return false unless @x_account_id == other.
  return false unless @x_connector_profile_id == other.x_connector_profile_id
  return false unless @debug == other.debug
  true
end