Update central api with creation time type changes

Signed-off-by: Erik Hollensbe <linux@hollensbe.org>
This commit is contained in:
Erik Hollensbe
2021-08-27 12:55:12 -07:00
parent 5068814e34
commit 6cc5c45ae9
5 changed files with 4 additions and 5 deletions
@@ -1 +1 @@
5.2.1-SNAPSHOT
5.3.0-SNAPSHOT
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "zerotier-central-api"
version = "1.0.1"
version = "1.0.2"
edition = "2018"
description = "OpenAPI bindings to the ZeroTier Central (https://my.zerotier.com) service"
authors = ["Erik Hollensbe <erik.hollensbe@zerotier.com>", "Adam Ierymenko <adam.ierymenko@zerotier.com>"]
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
**org_id** | Option<**String**> | Organization ID | [optional][readonly]
**email** | Option<**String**> | Email address of invitee | [optional]
**id** | Option<**String**> | Invitation ID | [optional][readonly]
**creation_time** | Option<**i32**> | Creation time of the invite | [optional][readonly]
**creation_time** | Option<**i64**> | Creation time of the invite | [optional][readonly]
**status** | Option<[**crate::models::InviteStatus**](InviteStatus.md)> | Invitation status | [optional][readonly]
**update_time** | Option<**i64**> | Last updated time of the invitation | [optional][readonly]
**owner_email** | Option<**String**> | Organization owner email address | [optional][readonly]
-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'
@@ -24,7 +24,7 @@ pub struct OrganizationInvitation {
pub id: Option<String>,
/// Creation time of the invite
#[serde(rename = "creation_time", skip_serializing_if = "Option::is_none")]
pub creation_time: Option<i32>,
pub creation_time: Option<i64>,
/// Invitation status
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
pub status: Option<Box<crate::models::InviteStatus>>,