fix adi field type signature in rust api

Signed-off-by: Erik Hollensbe <linux@hollensbe.org>
This commit is contained in:
Erik Hollensbe
2021-08-27 13:23:51 -07:00
parent 6cc5c45ae9
commit 063ecb1357
5 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
5.2.1-SNAPSHOT
5.3.0-SNAPSHOT
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "zerotier-one-api"
version = "1.0.3"
version = "1.0.4"
edition = "2018"
description = "OpenAPI bindings to the ZeroTierOne JSON API"
authors = ["Erik Hollensbe <erik.hollensbe@zerotier.com>", "Adam Ierymenko <adam.ierymenko@zerotier.com>"]
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**adi** | Option<**i32**> | | [optional]
**adi** | Option<**i64**> | | [optional]
**mac** | 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)
-1
View File
@@ -55,4 +55,3 @@ git pull origin master
# Pushes (Forces) the changes in the local repository up to the remote repository
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
git push origin master 2>&1 | grep -v 'To https'
@@ -14,7 +14,7 @@
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct NetworkAllOf1MulticastSubscriptions {
#[serde(rename = "adi", skip_serializing_if = "Option::is_none")]
pub adi: Option<i32>,
pub adi: Option<i64>,
#[serde(rename = "mac", skip_serializing_if = "Option::is_none")]
pub mac: Option<String>,
}