@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
63 lines • 2.22 kB
TypeScript
/**
* API v4
* Swagger documentation for API v4
*
* The version of the OpenAPI document: 4.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 SoSNotificationEntityMetadataComment
*/
export interface SoSNotificationEntityMetadataComment {
/**
* ID of the comment that triggered the notification
* @type {number}
* @memberof SoSNotificationEntityMetadataComment
*/
commentId: number;
/**
* Table ID where the comment was created
* @type {string}
* @memberof SoSNotificationEntityMetadataComment
*/
tableId: string;
/**
* Record ID of the entity being commented on
* @type {string}
* @memberof SoSNotificationEntityMetadataComment
*/
recordId: string;
/**
* Property ID associated with the comment
* @type {string}
* @memberof SoSNotificationEntityMetadataComment
*/
propertyId: string;
/**
* Human-readable property address
* @type {string}
* @memberof SoSNotificationEntityMetadataComment
*/
propertyAddress: string;
/**
* User ID of the comment author
* @type {string}
* @memberof SoSNotificationEntityMetadataComment
*/
authorUserId: string;
}
/**
* Check if a given object implements the SoSNotificationEntityMetadataComment interface.
*/
export declare function instanceOfSoSNotificationEntityMetadataComment(value: object): value is SoSNotificationEntityMetadataComment;
export declare function SoSNotificationEntityMetadataCommentFromJSON(json: any): SoSNotificationEntityMetadataComment;
export declare function SoSNotificationEntityMetadataCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSNotificationEntityMetadataComment;
export declare function SoSNotificationEntityMetadataCommentToJSON(json: any): SoSNotificationEntityMetadataComment;
export declare function SoSNotificationEntityMetadataCommentToJSONTyped(value?: SoSNotificationEntityMetadataComment | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSNotificationEntityMetadataComment.d.ts.map