@apideck/node
Version:
Apideck Node.js SDK
51 lines (50 loc) • 1.2 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Website
*/
export interface Website {
/**
* The website URL
* @type {string}
* @memberof Website
*/
url: string;
/**
* Unique identifier for the website
* @type {string}
* @memberof Website
*/
id?: string | null;
/**
* The type of website
* @type {string}
* @memberof Website
*/
type?: WebsiteType;
}
/**
* @export
* @enum {string}
*/
export declare enum WebsiteType {
primary = "primary",
secondary = "secondary",
work = "work",
personal = "personal",
other = "other"
}
export declare function WebsiteFromJSON(json: any): Website;
export declare function WebsiteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Website;
export declare function WebsiteToJSON(value?: Website | null): any;