Upgrade Rust SDK to spec 1.7.4

This commit is contained in:
VRCCat
2022-09-08 22:36:49 +00:00
parent 2f9ff05bfe
commit ae61282074
12 changed files with 52 additions and 47 deletions

View File

@@ -19,7 +19,8 @@ Name | Type | Description | Notes
**photon_region** | [**crate::models::Region**](Region.md) | |
**platforms** | [**crate::models::InstancePlatforms**](InstancePlatforms.md) | |
**region** | [**crate::models::Region**](Region.md) | |
**short_name** | **String** | |
**secure_name** | **String** | |
**short_name** | Option<**String**> | | [optional]
**tags** | **Vec<String>** | The tags array on Instances usually contain the language tags of the people in the instance. |
**_type** | [**crate::models::InstanceType**](InstanceType.md) | |
**world_id** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. |

View File

@@ -1,10 +1,11 @@
# InviteMyselfToRequest
# InstanceShortNameResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**short_name** | **String** | Short Name of the Instance; can be retrieved from the Get Instance Short Name endpoint. |
**secure_name** | **String** | |
**short_name** | Option<**String**> | | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -74,7 +74,7 @@ Name | Type | Description | Required | Notes
## get_short_name
> String get_short_name(world_id, instance_id)
> crate::models::InstanceShortNameResponse get_short_name(world_id, instance_id)
Get Instance Short Name
Returns an instance short name.
@@ -89,7 +89,7 @@ Name | Type | Description | Required | Notes
### Return type
**String**
[**crate::models::InstanceShortNameResponse**](InstanceShortNameResponse.md)
### Authorization

View File

@@ -80,7 +80,7 @@ Name | Type | Description | Required | Notes
## invite_myself_to
> crate::models::SentNotification invite_myself_to(world_id, instance_id, invite_myself_to_request)
> crate::models::SentNotification invite_myself_to(world_id, instance_id)
Invite Myself To Instance
Sends self an invite to an instance
@@ -92,7 +92,6 @@ Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**world_id** | **String** | | [required] |
**instance_id** | **String** | | [required] |
**invite_myself_to_request** | Option<[**InviteMyselfToRequest**](InviteMyselfToRequest.md)> | | |
### Return type
@@ -104,7 +103,7 @@ Name | Type | Description | Required | Notes
### HTTP request headers
- **Content-Type**: application/json
- **Content-Type**: Not defined
- **Accept**: application/json
[[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)