Class: XapiScraper::Models::Components::LikeActionBody
- Inherits:
-
Object
- Object
- XapiScraper::Models::Components::LikeActionBody
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/xapi_scraper/models/components/likeactionbody.rb
Overview
Body for the like action, containing only the cookie.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(cookie:, proxy: nil) ⇒ LikeActionBody
constructor
A new instance of LikeActionBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(cookie:, proxy: nil) ⇒ LikeActionBody
Returns a new instance of LikeActionBody.
28 29 30 31 |
# File 'lib/xapi_scraper/models/components/likeactionbody.rb', line 28 def initialize(cookie:, proxy: nil) @cookie = @proxy = proxy end |
Instance Method Details
#==(other) ⇒ Object
34 35 36 37 38 39 |
# File 'lib/xapi_scraper/models/components/likeactionbody.rb', line 34 def ==(other) return false unless other.is_a?(self.class) return false unless @cookie == other. return false unless @proxy == other.proxy true end |