shipstation-node
Version:
Unofficial Node.js wrapper for the ShipStation API
11 lines (10 loc) • 317 B
TypeScript
export interface ListUsersOptions {
/** Determines whether or not inactive users will be returned in the response. */
showInactive?: boolean;
}
export interface ListUsersResponseItem {
userId: string;
userName: string;
name: string;
}
export type ListUsersResponse = Array<ListUsersResponseItem>;