%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/doc/models/ |
Upload File : |
# Team Member Booking Profile
The booking profile of a seller's team member, including the team member's ID, display name, description and whether the team member can be booked as a service provider.
## Structure
`TeamMemberBookingProfile`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `teamMemberId` | `?string` | Optional | The ID of the [TeamMember](/doc/models/team-member.md) object for the team member associated with the booking profile. | getTeamMemberId(): ?string | setTeamMemberId(?string teamMemberId): void |
| `description` | `?string` | Optional | The description of the team member. | getDescription(): ?string | setDescription(?string description): void |
| `displayName` | `?string` | Optional | The display name of the team member. | getDisplayName(): ?string | setDisplayName(?string displayName): void |
| `isBookable` | `?bool` | Optional | Indicates whether the team member can be booked through the Bookings API or the seller's online booking channel or site (`true) or not (`false`). | getIsBookable(): ?bool | setIsBookable(?bool isBookable): void |
| `profileImageUrl` | `?string` | Optional | The URL of the team member's image for the bookings profile. | getProfileImageUrl(): ?string | setProfileImageUrl(?string profileImageUrl): void |
## Example (as JSON)
```json
{
"team_member_id": "team_member_id0",
"description": "description0",
"display_name": "display_name0",
"is_bookable": false,
"profile_image_url": "profile_image_url6"
}
```