@apideck/node
Version:
Apideck Node.js SDK
46 lines (45 loc) • 1.45 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.
*/
/**
* The metadata of the consumer. This is used to display the consumer in the sidebar. This is optional, but recommended.
* @export
* @interface ConsumerMetadata
*/
export interface ConsumerMetadata {
/**
* The name of the account as shown in the sidebar.
* @type {string}
* @memberof ConsumerMetadata
*/
account_name?: string;
/**
* The name of the user as shown in the sidebar.
* @type {string}
* @memberof ConsumerMetadata
*/
user_name?: string;
/**
* The email of the user as shown in the sidebar.
* @type {string}
* @memberof ConsumerMetadata
*/
email?: string;
/**
* The avatar of the user in the sidebar. Must be a valid URL
* @type {string}
* @memberof ConsumerMetadata
*/
image?: string;
}
export declare function ConsumerMetadataFromJSON(json: any): ConsumerMetadata;
export declare function ConsumerMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsumerMetadata;
export declare function ConsumerMetadataToJSON(value?: ConsumerMetadata | null): any;