Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function allowed(): array |
||
21 | { |
||
22 | return [ |
||
23 | 'id' => 'string', // The unique id for this business(Bookeo account) [read - only], |
||
24 | 'name' => 'string', // [read - only], |
||
25 | 'legalIdentifiers' => 'string, optional', // Tax ID, Vat ID, other legal identifiers [read - only], |
||
26 | 'phoneNumbers' => 'Array[PhoneNumber]', // [read - only], |
||
27 | 'websiteURL' => 'string, optional', // [read - only], |
||
28 | 'emailAddress' => 'string, optional', // [read - only], |
||
29 | 'streetAddress' => 'StreetAddress', // [read - only], |
||
30 | 'logo' => 'Image, optional', // [read - only], |
||
31 | 'description' => 'string, optional', // A description of the business, provided by the business itself . The content is in HTML . [read - only] |
||
32 | ]; |
||
33 | } |
||
34 | } |