UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

84 lines 2.33 kB
/** * 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. */ import type { CustomConfigParameters } from './CustomConfigParameters'; import type { APIAuditLog } from './APIAuditLog'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetAuditLogsResponse1 */ export interface GetAuditLogsResponse1 { /** * * @type {APIStatus} * @memberof GetAuditLogsResponse1 */ status: APIStatus; /** * * @type {Array<APIAuditLog>} * @memberof GetAuditLogsResponse1 */ auditLogs: Array<APIAuditLog>; /** * * @type {string} * @memberof GetAuditLogsResponse1 */ reason: string; /** * * @type {string} * @memberof GetAuditLogsResponse1 */ code: string; /** * * @type {string} * @memberof GetAuditLogsResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetAuditLogsResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetAuditLogsResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetAuditLogsResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetAuditLogsResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetAuditLogsResponse1 interface. */ export declare function instanceOfGetAuditLogsResponse1(value: object): value is GetAuditLogsResponse1; export declare function GetAuditLogsResponse1FromJSON(json: any): GetAuditLogsResponse1; export declare function GetAuditLogsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAuditLogsResponse1; export declare function GetAuditLogsResponse1ToJSON(json: any): GetAuditLogsResponse1; export declare function GetAuditLogsResponse1ToJSONTyped(value?: GetAuditLogsResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetAuditLogsResponse1.d.ts.map