Module: ConvenientService::Service::Plugins::HasJSendResult::Entities::Result::Concern Private
- Includes:
- ConvenientService::Support::Concern
- Defined in:
- lib/convenient_service/service/plugins/has_j_send_result/entities/result/concern.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
-
#to_s(format: :inspect) ⇒ String
Returns string representation of result.
Methods included from ConvenientService::Support::Concern
Instance Method Details
#to_s(format: :inspect) ⇒ String
Note:
Intended to be used for debugging purposes.
Returns string representation of result.
55 56 57 |
# File 'lib/convenient_service/service/plugins/has_j_send_result/entities/result/concern.rb', line 55 def to_s(format: :inspect) (format == :inspect) ? inspect : super() end |