@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 895 B
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.
*/
/**
* The team the person is currently in.
* @export
* @interface Team
*/
export interface Team {
/**
* The unique identifier of the team.
* @type {string}
* @memberof Team
*/
id?: string | null;
/**
* The name of the team.
* @type {string}
* @memberof Team
*/
name?: string | null;
}
export declare function TeamFromJSON(json: any): Team;
export declare function TeamFromJSONTyped(json: any, ignoreDiscriminator: boolean): Team;
export declare function TeamToJSON(value?: Team | null): any;