Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: TeamMemberAssignedLocationsAssignmentType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Enumerates the possible assignment types that the team member can have. */ class TeamMemberAssignedLocationsAssignmentType { /** * The team member is assigned to all current and future locations. The `location_ids` field * is empty if the team member has this assignment type. */ public const ALL_CURRENT_AND_FUTURE_LOCATIONS = 'ALL_CURRENT_AND_FUTURE_LOCATIONS'; /** * The team member is assigned to an explicit subset of locations. The `location_ids` field * is the list of locations that the team member is assigned to. */ public const EXPLICIT_LOCATIONS = 'EXPLICIT_LOCATIONS'; }
Save
Cancel