@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 881 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.
*/
/**
*
* @export
* @interface Assignee
*/
export interface Assignee {
/**
* A unique identifier for an object.
* @type {string}
* @memberof Assignee
*/
id: string;
/**
*
* @type {string}
* @memberof Assignee
*/
readonly username?: string | null;
}
export declare function AssigneeFromJSON(json: any): Assignee;
export declare function AssigneeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Assignee;
export declare function AssigneeToJSON(value?: Assignee | null): any;