"""Audience Shopify Notification schema.""" from marshmallow import Schema, fields class AudienceExportNotification(Schema): """Schema for Audience Export Notification. Properties: identity_id (str): Identity ID of the user to notify. audience_name (str): Exported audience name. filename (str): Exported file name. password (str): Exported file password to un-archive it. """ identity_id = fields.String(required=True) audience_name = fields.String(required=True) filename = fields.String(required=True) password = fields.String(required=True)