-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathOrganizationMembership.php
More file actions
45 lines (41 loc) · 1.05 KB
/
OrganizationMembership.php
File metadata and controls
45 lines (41 loc) · 1.05 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
<?php
namespace WorkOS\Resource;
/**
* 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 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",
"createdAt",
"updatedAt"
];
public const RESPONSE_TO_RESOURCE_KEY = [
"object" => "object",
"id" => "id",
"user_id" => "userId",
"organization_id" => "organizationId",
"role" => "role",
"roles" => "roles",
"status" => "status",
"created_at" => "createdAt",
"updated_at" => "updatedAt"
];
}