"""Audience Shopify Notification schema.""" from marshmallow import Schema, fields class AudienceShopifyNotification(Schema): """Schema for Audience Shopify Notification. Properties: - identity_id (str): Identity Id of the user to notify. - store_id (str): Audience Shopify Store Id. - store_domain (str): Shopify Store domain. - is_multiartist_store (bool): Whether the Shopify store contains products of multiple Artists. """ identity_id = fields.String(required=True) store_id = fields.String(required=True) store_domain = fields.String(required=True) is_multiartist_store = fields.Boolean(required=True)