@trophyso/node
Version:
NodeJS SDK for the Trophy API
10 lines (9 loc) • 308 B
TypeScript
/**
* An attribute update object. `id` is required and `name` is optional. `key` and `type` cannot be changed through this endpoint.
*/
export interface UpdateAttributeRequestItem {
/** The UUID of the attribute to update. */
id: string;
/** The updated attribute name. */
name?: string;
}