UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

11 lines (10 loc) 240 B
export interface OAuth2Token { client_id: string; client_secret?: string; redirect_uri?: string; access_token?: string; token_type?: string; expiry_date?: number; refresh_token?: string; scopes?: string[]; }