mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +00:00
Release v1.3.0
This commit is contained in:
parent
596fb5e642
commit
ff962a166e
62 changed files with 545 additions and 1043 deletions
|
|
@ -4,7 +4,7 @@
|
|||
* Tribufu API
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.2.0
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
|
|
@ -43,6 +43,12 @@ export interface IpAddress {
|
|||
* @memberof IpAddress
|
||||
*/
|
||||
reserved?: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof IpAddress
|
||||
*/
|
||||
banned?: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
|
|
@ -72,7 +78,7 @@ export interface IpAddress {
|
|||
* @type {string}
|
||||
* @memberof IpAddress
|
||||
*/
|
||||
region?: string | null;
|
||||
province?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
|
|
@ -150,11 +156,12 @@ export function IpAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|||
'version': json['version'] == null ? undefined : json['version'],
|
||||
'network': json['network'] == null ? undefined : json['network'],
|
||||
'reserved': json['reserved'] == null ? undefined : json['reserved'],
|
||||
'banned': json['banned'] == null ? undefined : json['banned'],
|
||||
'asn': json['asn'] == null ? undefined : json['asn'],
|
||||
'isp': json['isp'] == null ? undefined : json['isp'],
|
||||
'continent': json['continent'] == null ? undefined : json['continent'],
|
||||
'country': json['country'] == null ? undefined : json['country'],
|
||||
'region': json['region'] == null ? undefined : json['region'],
|
||||
'province': json['province'] == null ? undefined : json['province'],
|
||||
'city': json['city'] == null ? undefined : json['city'],
|
||||
'postalCode': json['postal_code'] == null ? undefined : json['postal_code'],
|
||||
'callingCode': json['calling_code'] == null ? undefined : json['calling_code'],
|
||||
|
|
@ -182,11 +189,12 @@ export function IpAddressToJSONTyped(value?: IpAddress | null, ignoreDiscriminat
|
|||
'version': value['version'],
|
||||
'network': value['network'],
|
||||
'reserved': value['reserved'],
|
||||
'banned': value['banned'],
|
||||
'asn': value['asn'],
|
||||
'isp': value['isp'],
|
||||
'continent': value['continent'],
|
||||
'country': value['country'],
|
||||
'region': value['region'],
|
||||
'province': value['province'],
|
||||
'city': value['city'],
|
||||
'postal_code': value['postalCode'],
|
||||
'calling_code': value['callingCode'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue