UNPKG

@apideck/node

Version:
40 lines (39 loc) 985 B
/** * 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 Owner */ export interface Owner { /** * ID of the owner * @type {string} * @memberof Owner */ readonly id?: string; /** * Email of the owner * @type {string} * @memberof Owner */ readonly email?: string | null; /** * Name of the owner * @type {string} * @memberof Owner */ readonly name?: string | null; } export declare function OwnerFromJSON(json: any): Owner; export declare function OwnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): Owner; export declare function OwnerToJSON(value?: Owner | null): any;