fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
63 lines • 1.58 kB
TypeScript
/**
* fastcomments
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0
*
*
* 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 EventLogEntry
*/
export interface EventLogEntry {
/**
*
* @type {string}
* @memberof EventLogEntry
*/
id: string;
/**
*
* @type {Date}
* @memberof EventLogEntry
*/
createdAt: Date;
/**
*
* @type {string}
* @memberof EventLogEntry
*/
tenantId: string;
/**
*
* @type {string}
* @memberof EventLogEntry
*/
urlId: string;
/**
*
* @type {string}
* @memberof EventLogEntry
*/
broadcastId: string;
/**
*
* @type {string}
* @memberof EventLogEntry
*/
data: string;
}
/**
* Check if a given object implements the EventLogEntry interface.
*/
export declare function instanceOfEventLogEntry(value: object): value is EventLogEntry;
export declare function EventLogEntryFromJSON(json: any): EventLogEntry;
export declare function EventLogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventLogEntry;
export declare function EventLogEntryToJSON(json: any): EventLogEntry;
export declare function EventLogEntryToJSONTyped(value?: EventLogEntry | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=EventLogEntry.d.ts.map