File "BulkCreateTeamMembersRequest.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/BulkCreateTeamMembersRequest.php
File size: 2.28 KB
MIME-type: text/x-php
Charset: utf-8
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;
use stdClass;
/**
* Represents a bulk create request for `TeamMember` objects.
*/
class BulkCreateTeamMembersRequest implements \JsonSerializable
{
/**
* @var array<string,CreateTeamMemberRequest>
*/
private $teamMembers;
/**
* @param array<string,CreateTeamMemberRequest> $teamMembers
*/
public function __construct(array $teamMembers)
{
$this->teamMembers = $teamMembers;
}
/**
* Returns Team Members.
* The data used to create the `TeamMember` objects. Each key is the `idempotency_key` that maps to the
* `CreateTeamMemberRequest`.
* The maximum number of create objects is 25.
*
* If you include a team member's `wage_setting`, you must provide `job_id` for each job assignment. To
* get job IDs,
* call [ListJobs](api-endpoint:Team-ListJobs).
*
* @return array<string,CreateTeamMemberRequest>
*/
public function getTeamMembers() : array
{
return $this->teamMembers;
}
/**
* Sets Team Members.
* The data used to create the `TeamMember` objects. Each key is the `idempotency_key` that maps to the
* `CreateTeamMemberRequest`.
* The maximum number of create objects is 25.
*
* If you include a team member's `wage_setting`, you must provide `job_id` for each job assignment. To
* get job IDs,
* call [ListJobs](api-endpoint:Team-ListJobs).
*
* @required
* @maps team_members
*
* @param array<string,CreateTeamMemberRequest> $teamMembers
*/
public function setTeamMembers(array $teamMembers) : void
{
$this->teamMembers = $teamMembers;
}
/**
* Encode this object to JSON
*
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
* are set. (default: false)
*
* @return array|stdClass
*/
#[\ReturnTypeWillChange]
public function jsonSerialize(bool $asArrayWhenEmpty = \false)
{
$json = [];
$json['team_members'] = $this->teamMembers;
$json = \array_filter($json, function ($val) {
return $val !== null;
});
return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json;
}
}