sfcc-dts
Version:
> High quality Salesforce Commerce Cloud type definitions. A dw-api-types "done right"
1,304 lines (1,303 loc) • 4.69 MB
JSON
{
"api": {
"TopLevel": {
"APIException": {
"fullClassName": "TopLevel.APIException",
"package": "TopLevel",
"description": "This error indicates an exceptional outcome of some business logic. Instances of\n this exception in general provide additional information about the reason of this case.\n See the actual type referred by the type property for the description of the properties\n with this additional information.\n <br><br>\n Limitation: The sub classes of this APIException shown in this documentation actually do not exist.\n All instances are of type APIException, but with different property sets as listed in the sub classes.\n <br><br>\n The APIException is always related to a systems internal Java exception. The class provides\n access to some more details about this internal Java exception.",
"hierarchy": [
{
"name": "Object"
},
{
"name": "TopLevel.Error"
}
],
"constants": {},
"properties": {
"causeFullName": {
"name": "causeFullName",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "If the exception is associated with a root cause, the property\n contains the full name of the associated Java exception.",
"deprecated": false,
"type": "property"
},
"causeMessage": {
"name": "causeMessage",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "If the exception is associated with a root cause, the property\n contains the message of the associated Java exception.",
"deprecated": false,
"type": "property"
},
"causeName": {
"name": "causeName",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "If the exception is associated with a root cause, the property\n contains the simplified name of the associated Java exception.",
"deprecated": false,
"type": "property"
},
"javaFullName": {
"name": "javaFullName",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "The full name of the underlying Java exception.",
"deprecated": false,
"type": "property"
},
"javaMessage": {
"name": "javaMessage",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "The message of the underlying Java exception.",
"deprecated": false,
"type": "property"
},
"javaName": {
"name": "javaName",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "The simplified name of the underlying Java exception.",
"deprecated": false,
"type": "property"
},
"type": {
"name": "type",
"class": {
"name": "String"
},
"static": false,
"readonly": false,
"description": "The name of the actual APIExcpetion type, without the package name.",
"deprecated": false,
"type": "property"
}
},
"constructors": {
"APIException": {
"name": "APIException",
"args": [],
"class": {
"description": ""
},
"description": "",
"deprecated": false
}
},
"methods": {}
},
"Array": {
"fullClassName": "TopLevel.Array",
"package": "TopLevel",
"description": "An Array of items.",
"hierarchy": [
{
"name": "Object"
}
],
"constants": {},
"properties": {
"length": {
"name": "length",
"class": {
"name": "Number"
},
"static": false,
"readonly": false,
"description": "The length of the Array.",
"deprecated": false,
"type": "property"
}
},
"constructors": {
"Array": {
"name": "Array",
"args": [],
"class": {
"description": ""
},
"description": "Constructs an Array.",
"deprecated": false
},
"Array0": {
"name": "Array",
"args": [
{
"name": "length",
"description": "the length of the Array.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs an Array of the specified\n length.",
"deprecated": false
},
"Array01": {
"name": "Array",
"args": [
{
"name": "values",
"description": "zero or more values that are stored in the Array.",
"class": {
"name": "Object"
},
"multiple": true
}
],
"class": {
"description": ""
},
"description": "Constructs an Array using the specified values.",
"deprecated": false
}
},
"methods": {
"concat": {
"name": "concat",
"args": [
{
"name": "values",
"description": "one or more Array values.",
"class": {
"name": "Object"
},
"multiple": true
}
],
"class": {
"name": "Array",
"description": "a new Array containing the concatenated values."
},
"description": "Constructs an Array by concatenating multiple values.",
"deprecated": false
},
"every": {
"name": "every",
"args": [
{
"name": "callback",
"description": "the function to call to determine if every element in this array satisfies the test defined by the function. The callback function is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "boolean",
"description": "true if every element in this array satisfies the test performed in the callback function."
},
"description": "Returns true if every element in this array satisfies the test\n performed in the callback function. The callback function is\n invoked with three arguments: the value of the element,\n the index of the element, and the Array object being traversed.",
"deprecated": false
},
"every0": {
"name": "every",
"args": [
{
"name": "callback",
"description": "the function to call to determine if every element in this array satisfies the test defined by the function. The callback function is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
},
{
"name": "thisObject",
"description": "the Object to use as 'this' when executing callback.",
"class": {
"name": "Array"
},
"multiple": false
}
],
"class": {
"name": "boolean",
"description": "true if every element in thisObject satisfies the test performed in the callback function, false otherwise."
},
"description": "Returns true if every element in the thisObject argument satisfies the\n test performed in the callback function, false otherwise.\n The callback function is invoked with three arguments: the value of the\n element, the index of the element, and the Array object being traversed.",
"deprecated": false
},
"filter": {
"name": "filter",
"args": [
{
"name": "callback",
"description": "the function that is called on this Array and which returns a new Array containing the elements that satisfy the function's test. The callback function is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a new Array containing the elements that satisfy the function's test."
},
"description": "Returns a new Array with all of the elements that pass the test\n implemented by the callback function. The callback function is\n invoked with three arguments: the value of the element,\n the index of the element, and the Array object being traversed.",
"deprecated": false
},
"filter0": {
"name": "filter",
"args": [
{
"name": "callback",
"description": "the function that is called on the thisObject Array and which returns a new Array containing the elements that satisfy the function's test. The callback function is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
},
{
"name": "thisObject",
"description": "the Object to use as 'this' when executing callback.",
"class": {
"name": "Array"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a new Array containing the elements that satisfy the function's test."
},
"description": "Returns a new Array with all of the elements that pass the test\n implemented by the callback function that is run against the\n specified Array, thisObject. The callback function is\n invoked with three arguments: the value of the element,\n the index of the element, and the Array object being traversed.",
"deprecated": false
},
"forEach": {
"name": "forEach",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "void",
"description": ""
},
"description": "Runs the provided callback function once for each element present in\n the Array. The callback function is invoked only for indexes of the\n Array which have assigned values; it is not invoked for indexes which\n have been deleted or which have never been assigned a value.",
"deprecated": false
},
"forEach0": {
"name": "forEach",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
},
{
"name": "thisObject",
"description": "the Object to use as 'this' when executing callback.",
"class": {
"name": "Array"
},
"multiple": false
}
],
"class": {
"name": "void",
"description": ""
},
"description": "Runs the provided callback function once for each element present in\n the specified Array, thisObject. The callback function is invoked only\n for indexes of the Array which have assigned values; it is not invoked\n for indexes which have been deleted or which have never been assigned\n a value.",
"deprecated": false
},
"indexOf": {
"name": "indexOf",
"args": [
{
"name": "elementToLocate",
"description": "the element to locate in the Array.",
"class": {
"name": "Object"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the index of the element or -1 if it is no preset."
},
"description": "Returns the first index at which a given element can be found in the\n array, or -1 if it is not present.",
"deprecated": false
},
"indexOf0": {
"name": "indexOf",
"args": [
{
"name": "elementToLocate",
"description": "the element to locate in the Array.",
"class": {
"name": "Object"
},
"multiple": false
},
{
"name": "fromIndex",
"description": "the index from which to start looking for the element.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the index of the element or -1 if it is no preset."
},
"description": "Returns the first index at which a given element can be found in the\n array starting at fromIndex, or -1 if it is not present.",
"deprecated": false
},
"join": {
"name": "join",
"args": [],
"class": {
"name": "String",
"description": "a concatenated list of all Array elements as a String."
},
"description": "Converts all Array elements to Strings and concatenates them.",
"deprecated": false
},
"join0": {
"name": "join",
"args": [
{
"name": "separator",
"description": "an optional character or string used to separate one element of the Array from the next element in the return String.",
"class": {
"name": "String"
},
"multiple": false
}
],
"class": {
"name": "String",
"description": "a concatenated list of all Array elements as a String where the specified delimiter is used to separate elements."
},
"description": "Converts all array elements to Strings and concatenates them.",
"deprecated": false
},
"lastIndexOf": {
"name": "lastIndexOf",
"args": [
{
"name": "elementToLocate",
"description": "the element to locate in the Array.",
"class": {
"name": "Object"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the index of the element or -1 if it is no preset."
},
"description": "Returns the last index at which a given element can be found in the\n array, or -1 if it is not present. The array is searched backwards.",
"deprecated": false
},
"lastIndexOf0": {
"name": "lastIndexOf",
"args": [
{
"name": "elementToLocate",
"description": "the element to locate in the Array.",
"class": {
"name": "Object"
},
"multiple": false
},
{
"name": "fromIndex",
"description": "the index from which to start looking for the element. The array is searched backwards.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the index of the element or -1 if it is no present."
},
"description": "Returns the last index at which a given element can be found in the\n array starting at fromIndex, or -1 if it is not present.\n The array is searched backwards.",
"deprecated": false
},
"map": {
"name": "map",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a new Array with the results of calling the specified function on every element in this Array."
},
"description": "Creates a new Array with the results of calling the specified function\n on every element in this Array. The callback function is invoked only\n for indexes of the Array which have assigned values; it is not invoked\n for indexes which have been deleted or which have never been assigned\n values.",
"deprecated": false
},
"map0": {
"name": "map",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
},
{
"name": "thisObject",
"description": "the Object to use as 'this' when executing callback.",
"class": {
"name": "Array"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a new Array with the results of calling the specified function on every element in this Array."
},
"description": "Creates a new Array with the results of calling the specified function\n on every element in the specified Array. The callback function is invoked only\n for indexes of the Array which have assigned values; it is not invoked\n for indexes which have been deleted or which have never been assigned\n values.",
"deprecated": false
},
"pop": {
"name": "pop",
"args": [],
"class": {
"name": "Object",
"description": "the last element of the Array."
},
"description": "Removes and returns the last element of the Array.",
"deprecated": false
},
"push": {
"name": "push",
"args": [
{
"name": "values",
"description": "one or more values that will be appended to the Array.",
"class": {
"name": "Object"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the new length of the Array."
},
"description": "Appends elements to the Array.",
"deprecated": false
},
"reverse": {
"name": "reverse",
"args": [],
"class": {
"name": "void",
"description": ""
},
"description": "Reverses the order of the elements in the Array.",
"deprecated": false
},
"shift": {
"name": "shift",
"args": [],
"class": {
"name": "Object",
"description": "the former first element."
},
"description": "Shifts elements down in the Array and returns the\n former first element.",
"deprecated": false
},
"slice": {
"name": "slice",
"args": [
{
"name": "start",
"description": "the location in the Array to start the slice operation.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "end",
"description": "the location in the Array to stop the slice operation.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a new Array containing the members bound by start and end."
},
"description": "Returns a new Array containing a portion of the\n Array using the specified start and end positions.",
"deprecated": false
},
"some": {
"name": "some",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "boolean",
"description": "true if any of the elements in the Array pass the test defined in the callback function, false otherwise."
},
"description": "Returns true if any of the elements in the Array pass the test\n defined in the callback function, false otherwise.",
"deprecated": false
},
"some0": {
"name": "some",
"args": [
{
"name": "callback",
"description": "the function to call, which is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.",
"class": {
"name": "Function"
},
"multiple": false
},
{
"name": "thisObject",
"description": "the Object to use as 'this' when executing callback.",
"class": {
"name": "Array"
},
"multiple": false
}
],
"class": {
"name": "boolean",
"description": "true if any of the elements in the Array pass the test defined in the callback function, false otherwise."
},
"description": "Returns true if any of the elements in the specified Array pass the test\n defined in the callback function, false otherwise.",
"deprecated": false
},
"sort": {
"name": "sort",
"args": [],
"class": {
"name": "Array",
"description": "a reference to the Array."
},
"description": "Sorts the elements of the Array in alphabetical\n order based on character encoding.\n\n This sort is not guaranteed to be stable: equal elements might\n be reordered as a result of the sort.",
"deprecated": false
},
"sort0": {
"name": "sort",
"args": [
{
"name": "function",
"description": "a Function used to specify the sorting order.",
"class": {
"name": "Function"
},
"multiple": false
}
],
"class": {
"name": "Array",
"description": "a reference to the Array."
},
"description": "Sorts the elements of the Array in alphabetical\n order based on character encoding.\n\n This sort is not guaranteed to be stable: equal elements might\n be reordered as a result of the sort.",
"deprecated": false
},
"splice": {
"name": "splice",
"args": [
{
"name": "start",
"description": "the start location.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "deleteCount",
"description": "the number of items to delete.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "values",
"description": "zero or more values to be inserted into the Array.",
"class": {
"name": "Object"
},
"multiple": true
}
],
"class": {
"name": "Array",
"description": ""
},
"description": "Deletes the specified number of elements from the Array at the specified position,\n and then inserts values into the Array at that location.",
"deprecated": false
},
"toLocaleString0": {
"name": "toLocaleString",
"args": [],
"class": {
"name": "String",
"description": "a localized String representing the Array."
},
"description": "Converts the Array to a localized String.",
"deprecated": false
},
"toString0": {
"name": "toString",
"args": [],
"class": {
"name": "String",
"description": "a String representation of the Array."
},
"description": "Converts the Array to a String.",
"deprecated": false
},
"unshift": {
"name": "unshift",
"args": [
{
"name": "values",
"description": "one or more vales that will be inserted into the beginning of the Array.",
"class": {
"name": "Object"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the new length of the Array."
},
"description": "Inserts elements at the beginning of the Array.",
"deprecated": false
}
}
},
"Boolean": {
"fullClassName": "TopLevel.Boolean",
"package": "TopLevel",
"description": "Provides support for boolean values.",
"hierarchy": [
{
"name": "Object"
}
],
"constants": {},
"properties": {},
"constructors": {
"Boolean": {
"name": "Boolean",
"args": [
{
"name": "value",
"description": "the String value to use to construct the Boolean. If value is null or an empty String, the Boolean is set to false.",
"class": {
"name": "String"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs the Boolean using the specified \n String value.",
"deprecated": false
},
"Boolean0": {
"name": "Boolean",
"args": [
{
"name": "value",
"description": "the Number value to use to construct the Boolean. If value is null or 0, the Boolean is set to false.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs the Boolean using the specified \n Number value.",
"deprecated": false
}
},
"methods": {
"toString0": {
"name": "toString",
"args": [],
"class": {
"name": "String",
"description": "true or false depending on the value used to create the Boolean."
},
"description": "Returns true or false depending on the value used to create \n the Boolean.",
"deprecated": false
},
"valueOf0": {
"name": "valueOf",
"args": [],
"class": {
"name": "Object",
"description": "the primitive boolean contained in the Boolean object."
},
"description": "Returns the primitive boolean contained in the Boolean \n object.",
"deprecated": false
}
}
},
"ConversionError": {
"fullClassName": "TopLevel.ConversionError",
"package": "TopLevel",
"description": "Represents a conversion error.",
"hierarchy": [
{
"name": "Object"
},
{
"name": "TopLevel.Error"
}
],
"constants": {},
"properties": {},
"constructors": {
"ConversionError": {
"name": "ConversionError",
"args": [],
"class": {
"description": ""
},
"description": "Constructs the error.",
"deprecated": false
},
"ConversionError0": {
"name": "ConversionError",
"args": [
{
"name": "msg",
"description": "the conversion error message.",
"class": {
"name": "String"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs the error with the \n specified message.",
"deprecated": false
}
},
"methods": {}
},
"Date": {
"fullClassName": "TopLevel.Date",
"package": "TopLevel",
"description": "A Date object contains a number indicating a particular instant in time to within a millisecond. The number may also\n be NaN, indicating that the Date object does not represent a specific instant of time.",
"hierarchy": [
{
"name": "Object"
}
],
"constants": {},
"properties": {},
"constructors": {
"Date": {
"name": "Date",
"args": [],
"class": {
"description": ""
},
"description": "Constructs the Date instance using the current date and time.",
"deprecated": false
},
"Date0": {
"name": "Date",
"args": [
{
"name": "millis",
"description": "the number of milliseconds between the desired date and January 1, 1970 (UTC). For example, value of 10000 would create a Date instance representing 10 seconds past midnight on January 1, 1970.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs the Date instance using the specified milliseconds.",
"deprecated": false
},
"Date01": {
"name": "Date",
"args": [
{
"name": "year",
"description": "a number representing the year.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "month",
"description": "a number representing the month.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "args",
"description": "a set of numbers representing the date, hours, minutes, seconds, and milliseconds.",
"class": {
"name": "Number"
},
"multiple": true
}
],
"class": {
"description": ""
},
"description": "Constructs the Date instance using the specified year and month. Optionally, you can pass up to five additional\n arguments representing date, hours, minutes, seconds, and milliseconds.",
"deprecated": false
},
"Date012": {
"name": "Date",
"args": [
{
"name": "dateString",
"description": "represents a Date in a valid date format.",
"class": {
"name": "String"
},
"multiple": false
}
],
"class": {
"description": ""
},
"description": "Constructs the Date instance by parsing the specified String.",
"deprecated": false
}
},
"methods": {
"getDate": {
"name": "getDate",
"args": [],
"class": {
"name": "Number",
"description": "the day of the month where the value is a Number from 1 to 31."
},
"description": "Returns the day of the month where the value is a Number from 1 to 31.",
"deprecated": false
},
"getDay": {
"name": "getDay",
"args": [],
"class": {
"name": "Number",
"description": "the day of the month where the value is a Number from 0 to 6."
},
"description": "Returns the day of the week where the value is a Number from 0 to 6.",
"deprecated": false
},
"getFullYear": {
"name": "getFullYear",
"args": [],
"class": {
"name": "Number",
"description": "the year of the Date in four-digit format."
},
"description": "Returns the year of the Date in four-digit format.",
"deprecated": false
},
"getHours": {
"name": "getHours",
"args": [],
"class": {
"name": "Number",
"description": "the hours field of the Date where the value is a Number from 0 (midnight) to 23 (11 PM)."
},
"description": "Return the hours field of the Date where the value is a Number from 0 (midnight) to 23 (11 PM).",
"deprecated": false
},
"getMilliseconds": {
"name": "getMilliseconds",
"args": [],
"class": {
"name": "Number",
"description": "the milliseconds field of the Date."
},
"description": "Returns the milliseconds field of the Date.",
"deprecated": false
},
"getMinutes": {
"name": "getMinutes",
"args": [],
"class": {
"name": "Number",
"description": "the minutes field of the Date where the value is a Number from 0 to 59."
},
"description": "Return the minutes field of the Date where the value is a Number from 0 to 59.",
"deprecated": false
},
"getMonth": {
"name": "getMonth",
"args": [],
"class": {
"name": "Number",
"description": "the month of the year as a value between 0 and 11."
},
"description": "Returns the month of the year as a value between 0 and 11.",
"deprecated": false
},
"getSeconds": {
"name": "getSeconds",
"args": [],
"class": {
"name": "Number",
"description": "the seconds field of the Date where the value is a Number from 0 to 59."
},
"description": "Return the seconds field of the Date where the value is a Number from 0 to 59.",
"deprecated": false
},
"getTime": {
"name": "getTime",
"args": [],
"class": {
"name": "Number",
"description": "the internal, millisecond representation of the Date object."
},
"description": "Returns the internal, millisecond representation of the Date object. This value is independent of time zone.",
"deprecated": false
},
"getTimezoneOffset": {
"name": "getTimezoneOffset",
"args": [],
"class": {
"name": "Number",
"description": "the difference between local time and Greenwich Mean Time (GMT) in minutes."
},
"description": "Returns the difference between local time and Greenwich Mean Time (GMT) in minutes.",
"deprecated": false
},
"getUTCDate": {
"name": "getUTCDate",
"args": [],
"class": {
"name": "Number",
"description": "the day of the month where the value is a Number from 1 to 31 when date is expressed in universal time."
},
"description": "Returns the day of the month where the value is a Number from 1 to 31 when date is expressed in universal time.",
"deprecated": false
},
"getUTCDay": {
"name": "getUTCDay",
"args": [],
"class": {
"name": "Number",
"description": "the day of the week where the value is a Number from 0 to 6 when date is expressed in universal time."
},
"description": "Returns the day of the week where the value is a Number from 0 to 6 when date is expressed in universal time.",
"deprecated": false
},
"getUTCFullYear": {
"name": "getUTCFullYear",
"args": [],
"class": {
"name": "Number",
"description": "the year of the Date in four-digit form."
},
"description": "Returns the year when the Date is expressed in universal time. The return value is a four-digit format.",
"deprecated": false
},
"getUTCHours": {
"name": "getUTCHours",
"args": [],
"class": {
"name": "Number",
"description": "the hours field, expressed in universal time, of the Date where the value is a Number from 0 (midnight) to 23 (11 PM)."
},
"description": "Return the hours field, expressed in universal time, of the Date where the value is a Number from 0 (midnight) to\n 23 (11 PM).",
"deprecated": false
},
"getUTCMilliseconds": {
"name": "getUTCMilliseconds",
"args": [],
"class": {
"name": "Number",
"description": "the milliseconds field, expressed in universal time, of the Date."
},
"description": "Returns the milliseconds field, expressed in universal time, of the Date.",
"deprecated": false
},
"getUTCMinutes": {
"name": "getUTCMinutes",
"args": [],
"class": {
"name": "Number",
"description": "the minutes field, expressed in universal time, of the Date where the value is a Number from 0 to 59."
},
"description": "Return the minutes field, expressed in universal time, of the Date where the value is a Number from 0 to 59.",
"deprecated": false
},
"getUTCMonth": {
"name": "getUTCMonth",
"args": [],
"class": {
"name": "Number",
"description": "the month of the year as a value between 0 and 11."
},
"description": "Returns the month of the year that results when the Date is expressed in universal time. The return value is a\n Number betwee 0 and 11.",
"deprecated": false
},
"getUTCSeconds": {
"name": "getUTCSeconds",
"args": [],
"class": {
"name": "Number",
"description": "the seconds field, expressed in universal time, of the Date where the value is a Number from 0 to 59."
},
"description": "Return the seconds field, expressed in universal time, of the Date where the value is a Number from 0 to 59.",
"deprecated": false
},
"now": {
"name": "now",
"args": [],
"static": true,
"class": {
"name": "Number",
"description": "the number of milliseconds since midnight of January 1, 1970."
},
"description": "Returns the number of milliseconds since midnight of January 1, 1970 up until now.",
"deprecated": false
},
"parse": {
"name": "parse",
"args": [
{
"name": "dateString",
"description": "represents a Date in a valid date format.",
"class": {
"name": "String"
},
"multiple": false
}
],
"static": true,
"class": {
"name": "Number",
"description": "the number of milliseconds since midnight of January 1, 1970 or NaN if no date could be recognized."
},
"description": "Takes a date string and returns the number of milliseconds since midnight of January 1, 1970.\n Supports:\n \n RFC2822 date strings\n strings matching the exact ISO 8601 format 'YYYY-MM-DDTHH:mm:ss.sssZ'",
"deprecated": false
},
"setDate": {
"name": "setDate",
"args": [
{
"name": "date",
"description": "the day of the month.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the day of the month where the value is a Number from 1 to 31.",
"deprecated": false
},
"setFullYear": {
"name": "setFullYear",
"args": [
{
"name": "year",
"description": "the year as a four-digit Number.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "args",
"description": "the month and day of the month.",
"class": {
"name": "Number"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the full year of Date where the value must be a four-digit Number. Optionally, you can set the month and\n date.",
"deprecated": false
},
"setHours": {
"name": "setHours",
"args": [
{
"name": "hours",
"description": "the minutes field of this Date instance.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "args",
"description": "the hours, seconds and milliseconds values for this Date instance.",
"class": {
"name": "Number"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the hours field of this Date instance. The minutes value should be a Number from 0 to 23. Optionally, hours,\n seconds and milliseconds can also be provided.",
"deprecated": false
},
"setMilliseconds": {
"name": "setMilliseconds",
"args": [
{
"name": "millis",
"description": "the milliseconds field of this Date instance.",
"class": {
"name": "Number"
},
"multiple": false
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the milliseconds field of this Date instance.",
"deprecated": false
},
"setMinutes": {
"name": "setMinutes",
"args": [
{
"name": "minutes",
"description": "the minutes field of this Date instance.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "args",
"description": "the seconds and milliseconds value for this Date instance.",
"class": {
"name": "Number"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the minutes field of this Date instance. The minutes value should be a Number from 0 to 59. Optionally,\n seconds and milliseconds can also be provided.",
"deprecated": false
},
"setMonth": {
"name": "setMonth",
"args": [
{
"name": "month",
"description": "the month of the year.",
"class": {
"name": "Number"
},
"multiple": false
},
{
"name": "date",
"description": "the day of the month.",
"class": {
"name": "Number"
},
"multiple": true
}
],
"class": {
"name": "Number",
"description": "the millisecond representation of the adjusted date."
},
"description": "Sets the month of the year where the value is a Number from 0 to 11. Optionally, you can set the day of the\n month.",
"deprecated": false
},
"setSeconds": {
"name": "setSeconds",
"args": [
{
"name": "seconds",
"description": "the seconds field of this Date instance.",