import type * as Square from "../index"; /** * An object that represents a team member's assignment to locations. */ export interface TeamMemberAssignedLocations { /** * The current assignment type of the team member. * See [TeamMemberAssignedLocationsAssignmentType](#type-teammemberassignedlocationsassignmenttype) for possible values */ assignmentType?: Square.TeamMemberAssignedLocationsAssignmentType; /** The explicit locations that the team member is assigned to. */ locationIds?: string[] | null; }