Type alias PropertyQueryEventDTO

PropertyQueryEventDTO: {
    eventDate: string;
    eventType: string;
} & {
    propertyQuery: {
        issuerProperties?: Record<string, any>;
        queriedProperties: string[];
        queryId?: string;
    };
}

Type declaration

  • eventDate: string
  • eventType: string

Type declaration

  • propertyQuery: {
        issuerProperties?: Record<string, any>;
        queriedProperties: string[];
        queryId?: string;
    }
    • Optional issuerProperties?: Record<string, any>
    • queriedProperties: string[]
    • Optional queryId?: string