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