@apideck/node
Version:
Apideck Node.js SDK
76 lines (75 loc) • 2.08 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 CollectionUser
*/
export interface CollectionUser {
/**
* A unique identifier for an object.
* @type {string}
* @memberof CollectionUser
*/
readonly id?: string | null;
/**
* Full name of the user
* @type {string}
* @memberof CollectionUser
*/
name?: string | null;
/**
* First name of the user
* @type {string}
* @memberof CollectionUser
*/
first_name?: string | null;
/**
* Last name of the user
* @type {string}
* @memberof CollectionUser
*/
last_name?: string | null;
/**
* Email address of the user
* @type {string}
* @memberof CollectionUser
*/
email?: string | null;
/**
* The URL of the photo of a person.
* @type {string}
* @memberof CollectionUser
*/
photo_url?: string | null;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof CollectionUser
*/
readonly custom_mappings?: object | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof CollectionUser
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof CollectionUser
*/
readonly created_at?: Date | null;
}
export declare function CollectionUserFromJSON(json: any): CollectionUser;
export declare function CollectionUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionUser;
export declare function CollectionUserToJSON(value?: CollectionUser | null): any;