/** * Details related to the insult. */ export declare class InsultDetail { /** * Date and time when the insult was reported to the partner, in ISO-8601 date and time format `yyyy-MM-ddTHH:mm:ss.SSSZ`. */ insultReportedDateTime?: Date; constructor(insultDetail: InsultDetailProperties); } export interface InsultDetailProperties { insultReportedDateTime?: Date; }