Skip to content

Commit 7a03bdb

Browse files
committed
Change namespace
1 parent 59b8aa7 commit 7a03bdb

File tree

1,506 files changed

+9210
-9210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,506 files changed

+9210
-9210
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To install the bindings via [Composer](http://getcomposer.org/), add the followi
1919
```
2020
{
2121
"require": {
22-
"dansleboby/zoomphp-sdk": "1.0.0"
22+
"dansleboby/zoomphp-sdk": "*@dev"
2323
}
2424
}
2525
```
@@ -52,9 +52,9 @@ Please follow the [installation procedure](#installation--usage) and then run th
5252
require_once(__DIR__ . '/vendor/autoload.php');
5353

5454
// Configure OAuth2 access token for authorization: OAuth
55-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
55+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
5656

57-
$apiInstance = new Swagger\Client\Api\AccountsApi(
57+
$apiInstance = new Zoom\Api\Api\AccountsApi(
5858
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
5959
// This is optional, `GuzzleHttp\Client` will be used as default.
6060
new GuzzleHttp\Client(),

docs/Api/AccountsApi.md

+43-43
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Swagger\Client\AccountsApi
1+
# Zoom\Api\AccountsApi
22

33
All URIs are relative to *https://api.zoom.us/v2*
44

@@ -19,7 +19,7 @@ Method | HTTP request | Description
1919

2020

2121
# **account**
22-
> \Swagger\Client\Model\InlineResponse20012 account($account_id)
22+
> \Zoom\Api\Model\InlineResponse20012 account($account_id)
2323
2424
Get a Sub Account
2525

@@ -31,9 +31,9 @@ Get a Sub Account under the Master Account. Your account must be a Master Accoun
3131
require_once(__DIR__ . '/vendor/autoload.php');
3232

3333
// Configure OAuth2 access token for authorization: OAuth
34-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
34+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
3535

36-
$apiInstance = new Swagger\Client\Api\AccountsApi(
36+
$apiInstance = new Zoom\Api\Api\AccountsApi(
3737
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
3838
// This is optional, `GuzzleHttp\Client` will be used as default.
3939
new GuzzleHttp\Client(),
@@ -58,7 +58,7 @@ Name | Type | Description | Notes
5858

5959
### Return type
6060

61-
[**\Swagger\Client\Model\InlineResponse20012**](../Model/InlineResponse20012.md)
61+
[**\Zoom\Api\Model\InlineResponse20012**](../Model/InlineResponse20012.md)
6262

6363
### Authorization
6464

@@ -72,7 +72,7 @@ Name | Type | Description | Notes
7272
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
7373

7474
# **accountCreate**
75-
> \Swagger\Client\Model\InlineResponse2015 accountCreate($body)
75+
> \Zoom\Api\Model\InlineResponse2015 accountCreate($body)
7676
7777
Create a Sub Account
7878

@@ -84,15 +84,15 @@ Create a Sub Account under the Master Account. <aside>Your account must be a Mas
8484
require_once(__DIR__ . '/vendor/autoload.php');
8585

8686
// Configure OAuth2 access token for authorization: OAuth
87-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
87+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
8888

89-
$apiInstance = new Swagger\Client\Api\AccountsApi(
89+
$apiInstance = new Zoom\Api\Api\AccountsApi(
9090
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
9191
// This is optional, `GuzzleHttp\Client` will be used as default.
9292
new GuzzleHttp\Client(),
9393
$config
9494
);
95-
$body = new \Swagger\Client\Model\Body11(); // \Swagger\Client\Model\Body11 | Account.
95+
$body = new \Zoom\Api\Model\Body11(); // \Zoom\Api\Model\Body11 | Account.
9696

9797
try {
9898
$result = $apiInstance->accountCreate($body);
@@ -107,11 +107,11 @@ try {
107107

108108
Name | Type | Description | Notes
109109
------------- | ------------- | ------------- | -------------
110-
**body** | [**\Swagger\Client\Model\Body11**](../Model/Body11.md)| Account. |
110+
**body** | [**\Zoom\Api\Model\Body11**](../Model/Body11.md)| Account. |
111111

112112
### Return type
113113

114-
[**\Swagger\Client\Model\InlineResponse2015**](../Model/InlineResponse2015.md)
114+
[**\Zoom\Api\Model\InlineResponse2015**](../Model/InlineResponse2015.md)
115115

116116
### Authorization
117117

@@ -137,9 +137,9 @@ Disassociate a Sub Account from the Master Account. This will leave the Sub Acco
137137
require_once(__DIR__ . '/vendor/autoload.php');
138138

139139
// Configure OAuth2 access token for authorization: OAuth
140-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
140+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
141141

142-
$apiInstance = new Swagger\Client\Api\AccountsApi(
142+
$apiInstance = new Zoom\Api\Api\AccountsApi(
143143
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
144144
// This is optional, `GuzzleHttp\Client` will be used as default.
145145
new GuzzleHttp\Client(),
@@ -177,7 +177,7 @@ void (empty response body)
177177
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
178178

179179
# **accountManagedDomain**
180-
> \Swagger\Client\Model\InlineResponse20013 accountManagedDomain($account_id)
180+
> \Zoom\Api\Model\InlineResponse20013 accountManagedDomain($account_id)
181181
182182
Get Managed Domains
183183

@@ -189,9 +189,9 @@ Get a Sub Account's [managed domains](https://support.zoom.us/hc/en-us/articles/
189189
require_once(__DIR__ . '/vendor/autoload.php');
190190

191191
// Configure OAuth2 access token for authorization: OAuth
192-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
192+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
193193

194-
$apiInstance = new Swagger\Client\Api\AccountsApi(
194+
$apiInstance = new Zoom\Api\Api\AccountsApi(
195195
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
196196
// This is optional, `GuzzleHttp\Client` will be used as default.
197197
new GuzzleHttp\Client(),
@@ -216,7 +216,7 @@ Name | Type | Description | Notes
216216

217217
### Return type
218218

219-
[**\Swagger\Client\Model\InlineResponse20013**](../Model/InlineResponse20013.md)
219+
[**\Zoom\Api\Model\InlineResponse20013**](../Model/InlineResponse20013.md)
220220

221221
### Authorization
222222

@@ -242,16 +242,16 @@ Update a Sub Account's options under the Master Account.<br> <aside>Your account
242242
require_once(__DIR__ . '/vendor/autoload.php');
243243

244244
// Configure OAuth2 access token for authorization: OAuth
245-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
245+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
246246

247-
$apiInstance = new Swagger\Client\Api\AccountsApi(
247+
$apiInstance = new Zoom\Api\Api\AccountsApi(
248248
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
249249
// This is optional, `GuzzleHttp\Client` will be used as default.
250250
new GuzzleHttp\Client(),
251251
$config
252252
);
253253
$account_id = "account_id_example"; // string | The account ID.
254-
$body = new \Swagger\Client\Model\Body12(); // \Swagger\Client\Model\Body12 |
254+
$body = new \Zoom\Api\Model\Body12(); // \Zoom\Api\Model\Body12 |
255255

256256
try {
257257
$apiInstance->accountOptionsUpdate($account_id, $body);
@@ -266,7 +266,7 @@ try {
266266
Name | Type | Description | Notes
267267
------------- | ------------- | ------------- | -------------
268268
**account_id** | **string**| The account ID. |
269-
**body** | [**\Swagger\Client\Model\Body12**](../Model/Body12.md)| |
269+
**body** | [**\Zoom\Api\Model\Body12**](../Model/Body12.md)| |
270270

271271
### Return type
272272

@@ -296,9 +296,9 @@ Get the settings of an account.<br> To get the settings of a ISV enabled Master
296296
require_once(__DIR__ . '/vendor/autoload.php');
297297

298298
// Configure OAuth2 access token for authorization: OAuth
299-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
299+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
300300

301-
$apiInstance = new Swagger\Client\Api\AccountsApi(
301+
$apiInstance = new Zoom\Api\Api\AccountsApi(
302302
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
303303
// This is optional, `GuzzleHttp\Client` will be used as default.
304304
new GuzzleHttp\Client(),
@@ -351,9 +351,9 @@ Update the settings of a Sub Account that is under a Master Account.<br> To upda
351351
require_once(__DIR__ . '/vendor/autoload.php');
352352

353353
// Configure OAuth2 access token for authorization: OAuth
354-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
354+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
355355

356-
$apiInstance = new Swagger\Client\Api\AccountsApi(
356+
$apiInstance = new Zoom\Api\Api\AccountsApi(
357357
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
358358
// This is optional, `GuzzleHttp\Client` will be used as default.
359359
new GuzzleHttp\Client(),
@@ -407,9 +407,9 @@ Get trusted domains of a Sub Account. To get the trusted domains of a Master Acc
407407
require_once(__DIR__ . '/vendor/autoload.php');
408408

409409
// Configure OAuth2 access token for authorization: OAuth
410-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
410+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
411411

412-
$apiInstance = new Swagger\Client\Api\AccountsApi(
412+
$apiInstance = new Zoom\Api\Api\AccountsApi(
413413
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
414414
// This is optional, `GuzzleHttp\Client` will be used as default.
415415
new GuzzleHttp\Client(),
@@ -448,7 +448,7 @@ Name | Type | Description | Notes
448448
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
449449

450450
# **accounts**
451-
> \Swagger\Client\Model\AccountList accounts($page_size, $page_number, $next_page_token)
451+
> \Zoom\Api\Model\AccountList accounts($page_size, $page_number, $next_page_token)
452452
453453
List Sub Accounts
454454

@@ -460,9 +460,9 @@ List all the Sub Accounts under the Master Account.<br><br> Only Master Accounts
460460
require_once(__DIR__ . '/vendor/autoload.php');
461461

462462
// Configure OAuth2 access token for authorization: OAuth
463-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
463+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
464464

465-
$apiInstance = new Swagger\Client\Api\AccountsApi(
465+
$apiInstance = new Zoom\Api\Api\AccountsApi(
466466
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
467467
// This is optional, `GuzzleHttp\Client` will be used as default.
468468
new GuzzleHttp\Client(),
@@ -491,7 +491,7 @@ Name | Type | Description | Notes
491491

492492
### Return type
493493

494-
[**\Swagger\Client\Model\AccountList**](../Model/AccountList.md)
494+
[**\Zoom\Api\Model\AccountList**](../Model/AccountList.md)
495495

496496
### Authorization
497497

@@ -505,7 +505,7 @@ Name | Type | Description | Notes
505505
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
506506

507507
# **getAccountLockSettings**
508-
> \Swagger\Client\Model\InlineResponse20070 getAccountLockSettings($account_id)
508+
> \Zoom\Api\Model\InlineResponse20070 getAccountLockSettings($account_id)
509509
510510
Get Locked Settings
511511

@@ -517,9 +517,9 @@ Get Locked Settings
517517
require_once(__DIR__ . '/vendor/autoload.php');
518518

519519
// Configure OAuth2 access token for authorization: OAuth
520-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
520+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
521521

522-
$apiInstance = new Swagger\Client\Api\AccountsApi(
522+
$apiInstance = new Zoom\Api\Api\AccountsApi(
523523
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
524524
// This is optional, `GuzzleHttp\Client` will be used as default.
525525
new GuzzleHttp\Client(),
@@ -544,7 +544,7 @@ Name | Type | Description | Notes
544544

545545
### Return type
546546

547-
[**\Swagger\Client\Model\InlineResponse20070**](../Model/InlineResponse20070.md)
547+
[**\Zoom\Api\Model\InlineResponse20070**](../Model/InlineResponse20070.md)
548548

549549
### Authorization
550550

@@ -570,16 +570,16 @@ Update Locked Settings
570570
require_once(__DIR__ . '/vendor/autoload.php');
571571

572572
// Configure OAuth2 access token for authorization: OAuth
573-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
573+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
574574

575-
$apiInstance = new Swagger\Client\Api\AccountsApi(
575+
$apiInstance = new Zoom\Api\Api\AccountsApi(
576576
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
577577
// This is optional, `GuzzleHttp\Client` will be used as default.
578578
new GuzzleHttp\Client(),
579579
$config
580580
);
581581
$account_id = "account_id_example"; // string | Unique Identifier of the account. To retrieve locked settings of the Master account or a regular account, provide \"me\" as the value of this field. <br> To retrieve locked settings of a Sub Account, provide the Account ID of the Sub Account in this field.
582-
$body = new \Swagger\Client\Model\Body52(); // \Swagger\Client\Model\Body52 |
582+
$body = new \Zoom\Api\Model\Body52(); // \Zoom\Api\Model\Body52 |
583583

584584
try {
585585
$result = $apiInstance->updateAccountLockSettings($account_id, $body);
@@ -595,7 +595,7 @@ try {
595595
Name | Type | Description | Notes
596596
------------- | ------------- | ------------- | -------------
597597
**account_id** | **string**| Unique Identifier of the account. To retrieve locked settings of the Master account or a regular account, provide \&quot;me\&quot; as the value of this field. &lt;br&gt; To retrieve locked settings of a Sub Account, provide the Account ID of the Sub Account in this field. |
598-
**body** | [**\Swagger\Client\Model\Body52**](../Model/Body52.md)| | [optional]
598+
**body** | [**\Zoom\Api\Model\Body52**](../Model/Body52.md)| | [optional]
599599

600600
### Return type
601601

@@ -625,16 +625,16 @@ The current account owner can [change the owner of an account](https://support.z
625625
require_once(__DIR__ . '/vendor/autoload.php');
626626

627627
// Configure OAuth2 access token for authorization: OAuth
628-
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
628+
$config = Zoom\Api\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
629629

630-
$apiInstance = new Swagger\Client\Api\AccountsApi(
630+
$apiInstance = new Zoom\Api\Api\AccountsApi(
631631
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
632632
// This is optional, `GuzzleHttp\Client` will be used as default.
633633
new GuzzleHttp\Client(),
634634
$config
635635
);
636636
$account_id = "account_id_example"; // string | Account Id of the account.
637-
$body = new \Swagger\Client\Model\Body54(); // \Swagger\Client\Model\Body54 |
637+
$body = new \Zoom\Api\Model\Body54(); // \Zoom\Api\Model\Body54 |
638638

639639
try {
640640
$result = $apiInstance->updateAccountOwner($account_id, $body);
@@ -650,7 +650,7 @@ try {
650650
Name | Type | Description | Notes
651651
------------- | ------------- | ------------- | -------------
652652
**account_id** | **string**| Account Id of the account. |
653-
**body** | [**\Swagger\Client\Model\Body54**](../Model/Body54.md)| | [optional]
653+
**body** | [**\Zoom\Api\Model\Body54**](../Model/Body54.md)| | [optional]
654654

655655
### Return type
656656

0 commit comments

Comments
 (0)