@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 429 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing deleted attributes represented by ID and any per-item issues, including invalid or missing attribute IDs.
*/
export interface DeleteAttributesResponse {
/** Array of deleted attributes represented by ID. */
deleted: TrophyApi.DeletedResource[];
/** Array of issues encountered during attribute deletion. */
issues: TrophyApi.AdminIssue[];
}