Class: DingSDK::Models::Shared::FeedbackResponse
- Inherits:
-
Object
- Object
- DingSDK::Models::Shared::FeedbackResponse
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/ding_sdk/models/shared/feedbackresponse.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(uuid: nil) ⇒ FeedbackResponse
constructor
A new instance of FeedbackResponse.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(uuid: nil) ⇒ FeedbackResponse
Returns a new instance of FeedbackResponse.
21 22 23 |
# File 'lib/ding_sdk/models/shared/feedbackresponse.rb', line 21 def initialize(uuid: nil) @uuid = uuid end |
Instance Method Details
#==(other) ⇒ Object
25 26 27 28 29 |
# File 'lib/ding_sdk/models/shared/feedbackresponse.rb', line 25 def ==(other) return false unless other.is_a? self.class return false unless @uuid == other.uuid true end |