mirror of
https://github.com/zerotier/zerotier-rust-api.git
synced 2026-05-22 16:26:25 -07:00
fix adi field type signature in rust api
Signed-off-by: Erik Hollensbe <linux@hollensbe.org>
This commit is contained in:
@@ -1 +1 @@
|
||||
5.2.1-SNAPSHOT
|
||||
5.3.0-SNAPSHOT
|
||||
@@ -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)
|
||||
|
||||
@@ -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>,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user