psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
17 lines (16 loc) • 596 B
TypeScript
import type { CallValidHeaders } from "./call-valid-headers.model";
export interface AllCallOptions {
/**
* Not required unless the platform is PS3, PS4, or PS Vita.
* If one of these platforms, the value __must__ be `"trophy"`.
*
* `"trophy"` for PS3, PS4, or PS Vita platforms.
* `"trophy2"` for the PS5 platform.
*/
npServiceName: "trophy" | "trophy2";
/** Limit the number of entities returned. */
limit: number;
/** Return entity data from this result onwards. */
offset: number;
headerOverrides: CallValidHeaders;
}