@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 361 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing created attributes and any per-item issues.
*/
export interface CreateAttributesResponse {
/** Array of successfully created attributes. */
created: TrophyApi.AdminAttribute[];
/** Array of issues encountered during attribute creation. */
issues: TrophyApi.AdminIssue[];
}