-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathOrganizationMembership.php
More file actions
69 lines (60 loc) · 1.74 KB
/
OrganizationMembership.php
File metadata and controls
69 lines (60 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
namespace WorkOS\Resource;
use WorkOS\Resource\RoleResponse;
/**
* Class OrganizationMembership.
*
* @property 'organization_membership' $object
* @property string $id
* @property string $userId
* @property string $organizationId
* @property RoleResponse $role
* @property array<RoleResponse> $roles
* @property 'active'|'inactive'|'pending' $status
* @property array<string, mixed> $idpAttributes
* @property string $createdAt
* @property string $updatedAt
*/
class OrganizationMembership extends BaseWorkOSResource
{
public const RESOURCE_TYPE = "organization_membership";
public const RESOURCE_ATTRIBUTES = [
"object",
"id",
"userId",
"organizationId",
"role",
"roles",
"status",
"idpAttributes",
"createdAt",
"updatedAt"
];
public const RESPONSE_TO_RESOURCE_KEY = [
"object" => "object",
"id" => "id",
"user_id" => "userId",
"organization_id" => "organizationId",
"role" => "role",
"roles" => "roles",
"status" => "status",
"idp_attributes" => "idpAttributes",
"created_at" => "createdAt",
"updated_at" => "updatedAt"
];
public static function constructFromResponse($response)
{
$instance = parent::constructFromResponse($response);
if (isset($response["role"])) {
$instance->values["role"] = new RoleResponse($response["role"]["slug"]);
}
if (isset($response["roles"])) {
$roles = [];
foreach ($response["roles"] as $role) {
$roles[] = new RoleResponse($role["slug"]);
}
$instance->values["roles"] = $roles;
}
return $instance;
}
}