Files
plexjs/docs/models/gettransienttokenrequest.md

1.7 KiB

GetTransientTokenRequest

Example Usage

import { GetTransientTokenQueryParamType, GetTransientTokenRequest, Scope } from "@lukehagar/plexjs";

let value: GetTransientTokenRequest = {
    type: GetTransientTokenQueryParamType.Delegation,
    scope: Scope.All,
};

Fields

Field Type Required Description
type models.GetTransientTokenQueryParamType ✔️ delegation - This is the only supported type parameter.
scope models.Scope ✔️ all - This is the only supported scope parameter.