@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 385 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing the points boosts that were deleted and any per-item issues.
*/
export interface DeletePointsBoostsResponse {
/** Array of deleted points boosts represented by ID. */
deleted: TrophyApi.DeletedResource[];
/** Array of issues encountered during boost deletion. */
issues: TrophyApi.AdminIssue[];
}