Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 775 Bytes

File metadata and controls

22 lines (15 loc) · 775 Bytes

RecentTriggerBody

Properties

Name Type Description Notes
timestamp number [optional] [default to undefined]
jsonBody { [key: string]: any; } The marshalled JSON request body for the incoming trigger webhook. If this is empty or contains invalid JSON, the timestamp is recorded but this field will be empty. [optional] [default to undefined]

Example

import { RecentTriggerBody } from 'launchdarkly-api-typescript';

const instance: RecentTriggerBody = {
    timestamp,
    jsonBody,
};

[Back to Model list] [Back to API list] [Back to README]