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
/
soap
/
dateTimeValue.d.ts
8 lines
(7 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Value
}
from
'./value'
;
import
{
DfpDateTime
}
from
'./dfpDateTime'
;
export
declare
class
DateTimeValue
extends
Value
{
protected
static
XSI_TYPE
:
string
;
value
:
DfpDateTime
;
constructor
(
value
?:
DfpDateTime
); }