Variable refresh_request_bodyConst

refresh_request_body: TObject<
    {
        client_id: TString;
        grant_type: TLiteral<"refresh_token">;
        refresh_token: TString;
        scope: TOptional<TString>;
    },
> = ...

Request body of a refresh request.

The requested scope MUST NOT include any scope not originally granted by the resource owner, and if omitted is treated as equal to the scope originally granted by the resource owner.