Class: StackOne::Models::Operations::StackoneRpcActionRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::StackoneRpcActionRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/stackone_rpc_action_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(actions_rpc_request_dto:, x_account_id:, debug: nil, run_id: nil, sync: nil) ⇒ StackoneRpcActionRequest
constructor
A new instance of StackoneRpcActionRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(actions_rpc_request_dto:, x_account_id:, debug: nil, run_id: nil, sync: nil) ⇒ StackoneRpcActionRequest
Returns a new instance of StackoneRpcActionRequest.
27 28 29 30 31 32 33 |
# File 'lib/stack_one/models/operations/stackone_rpc_action_request.rb', line 27 def initialize(actions_rpc_request_dto:, x_account_id:, debug: nil, run_id: nil, sync: nil) @actions_rpc_request_dto = actions_rpc_request_dto @x_account_id = x_account_id @debug = debug @run_id = run_id @sync = sync end |
Instance Method Details
#==(other) ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/stack_one/models/operations/stackone_rpc_action_request.rb', line 36 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.x_account_id return false unless @debug == other.debug return false unless @run_id == other.run_id return false unless @sync == other.sync true end |