Interface CompleteClaimPayload

interface CompleteClaimPayload {
    _expectedVersion: number;
    _specificInstanceIds?: string[];
    [customPluginId: string]: ClaimIntegrationPluginCustomBodyType<ClaimIntegrationPluginType> | any | undefined;
}

Indexable

Properties

_expectedVersion: number

Needs to be provided so we check that no plugins or claims have been updated since the claim was fetched.

_specificInstanceIds?: string[]

If provided, we will only complete the claim for the specific plugins w/ the provided instance IDs. Must be compatible with the satisfaction logic.