UNPKG
dfp-lib
Version:
latest (201611.0.0)
201611.0.0
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
dfp-lib
/
build
/
src
/
dfp
/
lib
/
oauth2Token.d.ts
11 lines
(10 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
[]; }