/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { TimelineAttributesSchemaSummaryValueUser } from './TimelineAttributesSchemaSummaryValueUser'; /** * * @export * @interface TimelineAttributesSchemaSummaryValue */ export interface TimelineAttributesSchemaSummaryValue { /** * Short headline of the change * @type {string} * @memberof TimelineAttributesSchemaSummaryValue */ title?: string; /** * Detailed description of what changed * @type {string} * @memberof TimelineAttributesSchemaSummaryValue */ details?: string; /** * * @type {TimelineAttributesSchemaSummaryValueUser} * @memberof TimelineAttributesSchemaSummaryValue */ user?: TimelineAttributesSchemaSummaryValueUser; } /** * Check if a given object implements the TimelineAttributesSchemaSummaryValue interface. */ export declare function instanceOfTimelineAttributesSchemaSummaryValue(value: object): value is TimelineAttributesSchemaSummaryValue; export declare function TimelineAttributesSchemaSummaryValueFromJSON(json: any): TimelineAttributesSchemaSummaryValue; export declare function TimelineAttributesSchemaSummaryValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimelineAttributesSchemaSummaryValue; export declare function TimelineAttributesSchemaSummaryValueToJSON(json: any): TimelineAttributesSchemaSummaryValue; export declare function TimelineAttributesSchemaSummaryValueToJSONTyped(value?: TimelineAttributesSchemaSummaryValue | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TimelineAttributesSchemaSummaryValue.d.ts.map