gift_card.rb 128 B

1234567
  1. module ShopifyAPI
  2. class GiftCard < Base
  3. def disable
  4. load_attributes_from_response(post(:disable))
  5. end
  6. end
  7. end