1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
from ..base import ShopifyResource
from .gift_card_adjustment import GiftCardAdjustment
class GiftCard(ShopifyResource):
def disable(self):
self._load_attributes_from_response(self.post("disable"))
@classmethod
def search(cls, **kwargs):
"""
Search for gift cards matching supplied query
Args:
order: Field and direction to order results by (default: disabled_at DESC)
query: Text to search for gift cards
page: Page to show (default: 1)
limit: Amount of results (default: 50) (maximum: 250)
fields: comma-separated list of fields to include in the response
Returns:
An array of gift cards.
"""
return cls._build_collection(cls.get("search", **kwargs))
def add_adjustment(self, adjustment):
"""
Create a new Gift Card Adjustment
"""
resource = self.post("adjustments", adjustment.encode())
return GiftCardAdjustment(GiftCard.format.decode(resource.body))
|