Method: Clayful::WishList.get
- Defined in:
- lib/models/wish_list.rb
.get(*args) ⇒ Object
211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/models/wish_list.rb', line 211 def self.get(*args) Clayful.call_api({ 'model_name' => @@name, 'method_name' => 'get', 'http_method' => 'GET', 'path' => '/v1/wishlists/{wishListId}', 'params' => ['wishListId', ], 'args' => args }) end |