"""Send Org Invite Email Schema.""" from marshmallow import Schema from marshmallow import fields class SendOrgInviteEmail(Schema): """Send Org Invite Email schema. Properties: -email (str): the email for this contact -brand (str): brand under which this user is being created -identity_id (str): uuid of created user -label_profile_id (str): vend_contact_id for user metadata. """ email = fields.String(required=True) brand = fields.String(required=False, default='orchard') identity_id = fields.String(required=True) label_profile_id = fields.String(required=False, allow_none=True)