mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2026-08-31 19:03:45 +02:00
Compare commits
45
Commits
2024-09-10
...
2026-08-04
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7df7790288 | ||
|
|
1aee08f409 | ||
|
|
85cd9f3bb0 | ||
|
|
52bde0bc23 | ||
|
|
1e5e74659e | ||
|
|
893f3664cf | ||
|
|
ccfbf97d36 | ||
|
|
bf338f4aff | ||
|
|
91cb44d244 | ||
|
|
235115168f | ||
|
|
b2bcc3715f | ||
|
|
2f35b969bf | ||
|
|
48d6a061f8 | ||
|
|
0b6ece0d28 | ||
|
|
271b27ffe9 | ||
|
|
b80b74b072 | ||
|
|
190ae54602 | ||
|
|
eb87d331b3 | ||
|
|
5a6f37e4c7 | ||
|
|
bd4b5b206b | ||
|
|
a8db1ec1a9 | ||
|
|
3aed2010c7 | ||
|
|
510c61bafd | ||
|
|
6fefd4cf18 | ||
|
|
bedaa955b5 | ||
|
|
a13656b27d | ||
|
|
abb2d1657e | ||
|
|
47c4e866bf | ||
|
|
65f1f8a410 | ||
|
|
c6c0051f82 | ||
|
|
6935c0811c | ||
|
|
66001b547f | ||
|
|
c574fccda7 | ||
|
|
2cfa0babe1 | ||
|
|
2f2d932d10 | ||
|
|
1215c0c8a2 | ||
|
|
93337e5e08 | ||
|
|
e871188661 | ||
|
|
ac9f655c44 | ||
|
|
717d8f243a | ||
|
|
6189601459 | ||
|
|
569e5ce62d | ||
|
|
6220cc6bb9 | ||
|
|
33d9fd732f | ||
|
|
764f240707 |
@@ -1,3 +0,0 @@
|
|||||||
node_modules
|
|
||||||
build
|
|
||||||
scripts
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
parser: '@typescript-eslint/parser',
|
|
||||||
plugins: [
|
|
||||||
'@typescript-eslint',
|
|
||||||
],
|
|
||||||
extends: [
|
|
||||||
'eslint:recommended',
|
|
||||||
'plugin:@typescript-eslint/recommended',
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
node: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
+2
-2
@@ -1,11 +1,11 @@
|
|||||||
FROM node:16-alpine
|
FROM node:24-alpine
|
||||||
|
|
||||||
# Create app directories
|
# Create app directories
|
||||||
RUN mkdir -p /usr/src/app
|
RUN mkdir -p /usr/src/app
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
# Install app dependencies
|
# Install app dependencies
|
||||||
COPY package.json package-lock.json tsconfig.json .eslintignore .eslintrc.js Readme.md /usr/src/app/
|
COPY package.json package-lock.json tsconfig.json eslint.config.mjs Readme.md /usr/src/app/
|
||||||
COPY src/ /usr/src/app/src/
|
COPY src/ /usr/src/app/src/
|
||||||
COPY scripts/ /usr/src/app/scripts/
|
COPY scripts/ /usr/src/app/scripts/
|
||||||
COPY other/ /usr/src/app/other/
|
COPY other/ /usr/src/app/other/
|
||||||
|
|||||||
+6
-1
@@ -96,10 +96,14 @@ Use this to unlock all features for one user for a specified duration.
|
|||||||
|
|
||||||
### request
|
### request
|
||||||
|
|
||||||
request properties: ``purchaseToken`` and ``purchaseId``
|
request properties: ``purchaseToken``, ``purchaseId`` and ``dryRun``
|
||||||
|
|
||||||
- ``purchasetoken`` is a string which the client shows at the purchase screen
|
- ``purchasetoken`` is a string which the client shows at the purchase screen
|
||||||
- ``purchaseId`` is the ID that is used at the bill
|
- ``purchaseId`` is the ID that is used at the bill
|
||||||
|
- ``dryRun`` is a boolean
|
||||||
|
- setting true will skip the actual unlocking
|
||||||
|
- false will add a four week tolerance to the token expiry to permit checking now and unlocking later
|
||||||
|
- ``type`` is a string and must be ``year``, ``month`` or ``unpaid14``
|
||||||
|
|
||||||
### response
|
### response
|
||||||
|
|
||||||
@@ -120,6 +124,7 @@ The response contains the following properties:
|
|||||||
- optional object
|
- optional object
|
||||||
- should be shown to the support
|
- should be shown to the support
|
||||||
- ``wasAlreadyExecuted`` (boolean, set if and only if ``ok`` is true)
|
- ``wasAlreadyExecuted`` (boolean, set if and only if ``ok`` is true)
|
||||||
|
- ``mail`` (string, set if and only if ``ok`` is true)
|
||||||
|
|
||||||
If the request was malformed: HTTP status code 400 Bad Request
|
If the request was malformed: HTTP status code 400 Bad Request
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,10 @@ If a whitelist was configured and the mail address is not within it: ``{"mailAdd
|
|||||||
|
|
||||||
If a blacklist was configured and the mail server is within it: ``{"mailServerBlacklisted": true}``
|
If a blacklist was configured and the mail server is within it: ``{"mailServerBlacklisted": true}``
|
||||||
|
|
||||||
|
If a temporarily blacklist was configured and the mail server is within it (used in case of known mail delivery issues): ``{"mailServerBlacklistedTemporarily": true}``
|
||||||
|
|
||||||
|
If the client is suspicious: ``{"blockedForIntegrityReasons": true}``
|
||||||
|
|
||||||
On success: a object with a ``mailLoginToken`` of the type string
|
On success: a object with a ``mailLoginToken`` of the type string
|
||||||
|
|
||||||
#### example response
|
#### example response
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ Use this before a purchase to check if a purchase is possible.
|
|||||||
|
|
||||||
see [this JSON schema](../schema/candopurchaserequest.md)
|
see [this JSON schema](../schema/candopurchaserequest.md)
|
||||||
|
|
||||||
|
Note that ``type`` is not used at all.
|
||||||
|
|
||||||
### response
|
### response
|
||||||
|
|
||||||
On a invalid request body: HTTP status code 400 Bad request
|
On a invalid request body: HTTP status code 400 Bad request
|
||||||
|
|||||||
@@ -14,8 +14,7 @@
|
|||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"deviceAuthToken",
|
"deviceAuthToken"
|
||||||
"type"
|
|
||||||
],
|
],
|
||||||
"definitions": {},
|
"definitions": {},
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
|||||||
+173
-225
@@ -2,409 +2,357 @@
|
|||||||
|
|
||||||
## Top-level Schemas
|
## Top-level Schemas
|
||||||
|
|
||||||
* [CanDoPurchaseRequest](./candopurchaserequest.md) – `https://timelimit.io/CanDoPurchaseRequest`
|
* [CanDoPurchaseRequest](./candopurchaserequest.md) – `https://timelimit.io/CanDoPurchaseRequest`
|
||||||
|
|
||||||
* [CanRecoverPasswordRequest](./canrecoverpasswordrequest.md) – `https://timelimit.io/CanRecoverPasswordRequest`
|
* [CanRecoverPasswordRequest](./canrecoverpasswordrequest.md) – `https://timelimit.io/CanRecoverPasswordRequest`
|
||||||
|
|
||||||
* [ClientPullChangesRequest](./clientpullchangesrequest.md) – `https://timelimit.io/ClientPullChangesRequest`
|
* [ClientPullChangesRequest](./clientpullchangesrequest.md) – `https://timelimit.io/ClientPullChangesRequest`
|
||||||
|
|
||||||
* [ClientPushChangesRequest](./clientpushchangesrequest.md) – `https://timelimit.io/ClientPushChangesRequest`
|
* [ClientPushChangesRequest](./clientpushchangesrequest.md) – `https://timelimit.io/ClientPushChangesRequest`
|
||||||
|
|
||||||
* [CreateFamilyByMailTokenRequest](./createfamilybymailtokenrequest.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest`
|
* [CreateFamilyByMailTokenRequest](./createfamilybymailtokenrequest.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest`
|
||||||
|
|
||||||
* [CreateRegisterDeviceTokenRequest](./createregisterdevicetokenrequest.md) – `https://timelimit.io/CreateRegisterDeviceTokenRequest`
|
* [CreateRegisterDeviceTokenRequest](./createregisterdevicetokenrequest.md) – `https://timelimit.io/CreateRegisterDeviceTokenRequest`
|
||||||
|
|
||||||
* [DeleteAccountPayload](./deleteaccountpayload.md) – `https://timelimit.io/DeleteAccountPayload`
|
* [DeleteAccountPayload](./deleteaccountpayload.md) – `https://timelimit.io/DeleteAccountPayload`
|
||||||
|
|
||||||
* [FinishPurchaseByGooglePlayRequest](./finishpurchasebygoogleplayrequest.md) – `https://timelimit.io/FinishPurchaseByGooglePlayRequest`
|
* [FinishPurchaseByGooglePlayRequest](./finishpurchasebygoogleplayrequest.md) – `https://timelimit.io/FinishPurchaseByGooglePlayRequest`
|
||||||
|
|
||||||
* [IdentityTokenPayload](./identitytokenpayload.md) – `https://timelimit.io/IdentityTokenPayload`
|
* [IdentityTokenPayload](./identitytokenpayload.md) – `https://timelimit.io/IdentityTokenPayload`
|
||||||
|
|
||||||
* [LinkParentMailAddressRequest](./linkparentmailaddressrequest.md) – `https://timelimit.io/LinkParentMailAddressRequest`
|
* [LinkParentMailAddressRequest](./linkparentmailaddressrequest.md) – `https://timelimit.io/LinkParentMailAddressRequest`
|
||||||
|
|
||||||
* [MailAuthTokenRequestBody](./mailauthtokenrequestbody.md) – `https://timelimit.io/MailAuthTokenRequestBody`
|
* [MailAuthTokenRequestBody](./mailauthtokenrequestbody.md) – `https://timelimit.io/MailAuthTokenRequestBody`
|
||||||
|
|
||||||
* [RecoverParentPasswordRequest](./recoverparentpasswordrequest.md) – `https://timelimit.io/RecoverParentPasswordRequest`
|
* [RecoverParentPasswordRequest](./recoverparentpasswordrequest.md) – `https://timelimit.io/RecoverParentPasswordRequest`
|
||||||
|
|
||||||
* [RegisterChildDeviceRequest](./registerchilddevicerequest.md) – `https://timelimit.io/RegisterChildDeviceRequest`
|
* [RegisterChildDeviceRequest](./registerchilddevicerequest.md) – `https://timelimit.io/RegisterChildDeviceRequest`
|
||||||
|
|
||||||
* [RemoveDeviceRequest](./removedevicerequest.md) – `https://timelimit.io/RemoveDeviceRequest`
|
* [RemoveDeviceRequest](./removedevicerequest.md) – `https://timelimit.io/RemoveDeviceRequest`
|
||||||
|
|
||||||
* [RequestIdentityTokenRequest](./requestidentitytokenrequest.md) – `https://timelimit.io/RequestIdentityTokenRequest`
|
* [RequestIdentityTokenRequest](./requestidentitytokenrequest.md) – `https://timelimit.io/RequestIdentityTokenRequest`
|
||||||
|
|
||||||
* [RequestWithAuthToken](./requestwithauthtoken.md) – `https://timelimit.io/RequestWithAuthToken`
|
* [RequestWithAuthToken](./requestwithauthtoken.md) – `https://timelimit.io/RequestWithAuthToken`
|
||||||
|
|
||||||
* [SendMailLoginCodeRequest](./sendmaillogincoderequest.md) – `https://timelimit.io/SendMailLoginCodeRequest`
|
* [SendMailLoginCodeRequest](./sendmaillogincoderequest.md) – `https://timelimit.io/SendMailLoginCodeRequest`
|
||||||
|
|
||||||
* [SerializedAppLogicAction](./serializedapplogicaction.md) – `https://timelimit.io/SerializedAppLogicAction`
|
* [SerializedAppLogicAction](./serializedapplogicaction.md) – `https://timelimit.io/SerializedAppLogicAction`
|
||||||
|
|
||||||
* [SerializedChildAction](./serializedchildaction.md) – `https://timelimit.io/SerializedChildAction`
|
* [SerializedChildAction](./serializedchildaction.md) – `https://timelimit.io/SerializedChildAction`
|
||||||
|
|
||||||
* [SerializedParentAction](./serializedparentaction.md) – `https://timelimit.io/SerializedParentAction`
|
* [SerializedParentAction](./serializedparentaction.md) – `https://timelimit.io/SerializedParentAction`
|
||||||
|
|
||||||
* [ServerDataStatus](./serverdatastatus.md) – `https://timelimit.io/ServerDataStatus`
|
* [ServerDataStatus](./serverdatastatus.md) – `https://timelimit.io/ServerDataStatus`
|
||||||
|
|
||||||
* [SignInByMailCodeRequest](./signinbymailcoderequest.md) – `https://timelimit.io/SignInByMailCodeRequest`
|
* [SignInByMailCodeRequest](./signinbymailcoderequest.md) – `https://timelimit.io/SignInByMailCodeRequest`
|
||||||
|
|
||||||
* [SignIntoFamilyRequest](./signintofamilyrequest.md) – `https://timelimit.io/SignIntoFamilyRequest`
|
* [SignIntoFamilyRequest](./signintofamilyrequest.md) – `https://timelimit.io/SignIntoFamilyRequest`
|
||||||
|
|
||||||
* [UpdatePrimaryDeviceRequest](./updateprimarydevicerequest.md) – `https://timelimit.io/UpdatePrimaryDeviceRequest`
|
* [UpdatePrimaryDeviceRequest](./updateprimarydevicerequest.md) – `https://timelimit.io/UpdatePrimaryDeviceRequest`
|
||||||
|
|
||||||
## Other Schemas
|
## Other Schemas
|
||||||
|
|
||||||
### Objects
|
### Objects
|
||||||
|
|
||||||
* [CategoryDataStatus](./clientpullchangesrequest-definitions-categorydatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus`
|
* [CategoryDataStatus](./clientpullchangesrequest-definitions-categorydatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus`
|
||||||
|
|
||||||
* [ClientDataStatus](./clientpullchangesrequest-definitions-clientdatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus`
|
* [ClientDataStatus](./clientpullchangesrequest-definitions-clientdatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus`
|
||||||
|
|
||||||
* [ClientPushChangesRequestAction](./clientpushchangesrequest-definitions-clientpushchangesrequestaction.md) – `https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction`
|
* [ClientPushChangesRequestAction](./clientpushchangesrequest-definitions-clientpushchangesrequestaction.md) – `https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction`
|
||||||
|
|
||||||
* [DeviceDataStatus](./clientpullchangesrequest-definitions-devicedatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus`
|
* [DeviceDataStatus](./clientpullchangesrequest-definitions-devicedatastatus.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus`
|
||||||
|
|
||||||
* [EncryptableParentPassword](./serializedchildaction-definitions-encryptableparentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword`
|
* [EncryptableParentPassword](./serializedchildaction-definitions-encryptableparentpassword.md) – `https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword`
|
||||||
|
|
||||||
* [EncryptableParentPassword](./serializedparentaction-definitions-encryptableparentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword`
|
* [EncryptableParentPassword](./serializedparentaction-definitions-encryptableparentpassword.md) – `https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword`
|
||||||
|
|
||||||
* [NewDeviceInfo](./createfamilybymailtokenrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo`
|
* [NewDeviceInfo](./createfamilybymailtokenrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo`
|
||||||
|
|
||||||
* [NewDeviceInfo](./registerchilddevicerequest-definitions-newdeviceinfo.md) – `https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo`
|
* [NewDeviceInfo](./registerchilddevicerequest-definitions-newdeviceinfo.md) – `https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo`
|
||||||
|
|
||||||
* [NewDeviceInfo](./signintofamilyrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo`
|
* [NewDeviceInfo](./signintofamilyrequest-definitions-newdeviceinfo.md) – `https://timelimit.io/SignIntoFamilyRequest#/definitions/NewDeviceInfo`
|
||||||
|
|
||||||
* [PlaintextParentPassword](./createfamilybymailtokenrequest-definitions-plaintextparentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword`
|
* [PlaintextParentPassword](./createfamilybymailtokenrequest-definitions-plaintextparentpassword.md) – `https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword`
|
||||||
|
|
||||||
* [PlaintextParentPassword](./recoverparentpasswordrequest-definitions-plaintextparentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword`
|
* [PlaintextParentPassword](./recoverparentpasswordrequest-definitions-plaintextparentpassword.md) – `https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword`
|
||||||
|
|
||||||
* [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction`
|
* [SerialiezdTriedDisablingDeviceAdminAction](./serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction`
|
||||||
|
|
||||||
* [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction`
|
* [SerialiizedUpdateNetworkTimeVerificationAction](./serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction`
|
||||||
|
|
||||||
* [SerializeResetCategoryNetworkIdsAction](./serializedparentaction-definitions-serializeresetcategorynetworkidsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializeResetCategoryNetworkIdsAction`
|
* [SerializeResetCategoryNetworkIdsAction](./serializedparentaction-definitions-serializeresetcategorynetworkidsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializeResetCategoryNetworkIdsAction`
|
||||||
|
|
||||||
* [SerializedAddCategoryAppsAction](./serializedparentaction-definitions-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction`
|
* [SerializedAddCategoryAppsAction](./serializedparentaction-definitions-serializedaddcategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction`
|
||||||
|
|
||||||
* [SerializedAddCategoryNetworkIdAction](./serializedparentaction-definitions-serializedaddcategorynetworkidaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction`
|
* [SerializedAddCategoryNetworkIdAction](./serializedparentaction-definitions-serializedaddcategorynetworkidaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction`
|
||||||
|
|
||||||
* [SerializedAddInstalledAppsAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction`
|
* [SerializedAddInstalledAppsAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction`
|
||||||
|
|
||||||
* [SerializedAddParentU2fKeyAction](./serializedparentaction-definitions-serializedaddparentu2fkeyaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction`
|
* [SerializedAddParentU2fKeyAction](./serializedparentaction-definitions-serializedaddparentu2fkeyaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction`
|
||||||
|
|
||||||
* [SerializedAddUsedTimeAction](./serializedapplogicaction-definitions-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction`
|
* [SerializedAddUsedTimeAction](./serializedapplogicaction-definitions-serializedaddusedtimeaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction`
|
||||||
|
|
||||||
* [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2`
|
* [SerializedAddUsedTimeActionVersion2](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2`
|
||||||
|
|
||||||
* [SerializedAddUserAction](./serializedparentaction-definitions-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction`
|
* [SerializedAddUserAction](./serializedparentaction-definitions-serializedadduseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction`
|
||||||
|
|
||||||
* [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem`
|
* [SerializedAppActivityItem](./serializedapplogicaction-definitions-serializedappactivityitem.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem`
|
||||||
|
|
||||||
* [SerializedAppActivityItem](./serverdatastatus-definitions-serializedappactivityitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem`
|
* [SerializedAppActivityItem](./serverdatastatus-definitions-serializedappactivityitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedAppActivityItem`
|
||||||
|
|
||||||
* [SerializedChangeParentPasswordAction](./serializedparentaction-definitions-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction`
|
* [SerializedChangeParentPasswordAction](./serializedparentaction-definitions-serializedchangeparentpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction`
|
||||||
|
|
||||||
* [SerializedChildChangePasswordAction](./serializedchildaction-definitions-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction`
|
* [SerializedChildChangePasswordAction](./serializedchildaction-definitions-serializedchildchangepasswordaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction`
|
||||||
|
|
||||||
* [SerializedChildSignInAction](./serializedchildaction-definitions-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction`
|
* [SerializedChildSignInAction](./serializedchildaction-definitions-serializedchildsigninaction.md) – `https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction`
|
||||||
|
|
||||||
* [SerializedCreateCategoryAction](./serializedparentaction-definitions-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction`
|
* [SerializedCreateCategoryAction](./serializedparentaction-definitions-serializedcreatecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction`
|
||||||
|
|
||||||
* [SerializedCreateTimelimtRuleAction](./serializedparentaction-definitions-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction`
|
* [SerializedCreateTimelimtRuleAction](./serializedparentaction-definitions-serializedcreatetimelimtruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction`
|
||||||
|
|
||||||
* [SerializedDeleteCategoryAction](./serializedparentaction-definitions-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction`
|
* [SerializedDeleteCategoryAction](./serializedparentaction-definitions-serializeddeletecategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction`
|
||||||
|
|
||||||
* [SerializedDeleteChildTaskAction](./serializedparentaction-definitions-serializeddeletechildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction`
|
* [SerializedDeleteChildTaskAction](./serializedparentaction-definitions-serializeddeletechildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction`
|
||||||
|
|
||||||
* [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-definitions-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction`
|
* [SerializedDeleteTimeLimitRuleAction](./serializedparentaction-definitions-serializeddeletetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction`
|
||||||
|
|
||||||
* [SerializedFinishKeyRequestAction](./serializedapplogicaction-definitions-serializedfinishkeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction`
|
* [SerializedFinishKeyRequestAction](./serializedapplogicaction-definitions-serializedfinishkeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction`
|
||||||
|
|
||||||
* [SerializedForceSyncAction](./serializedapplogicaction-definitions-serializedforcesyncaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedForceSyncAction`
|
* [SerializedForceSyncAction](./serializedapplogicaction-definitions-serializedforcesyncaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedForceSyncAction`
|
||||||
|
|
||||||
* [SerializedIgnoreManipulationAction](./serializedparentaction-definitions-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction`
|
* [SerializedIgnoreManipulationAction](./serializedparentaction-definitions-serializedignoremanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction`
|
||||||
|
|
||||||
* [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction`
|
* [SerializedIncrementCategoryExtraTimeAction](./serializedparentaction-definitions-serializedincrementcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction`
|
||||||
|
|
||||||
* [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp`
|
* [SerializedInstalledApp](./serializedapplogicaction-definitions-serializedinstalledapp.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp`
|
||||||
|
|
||||||
* [SerializedInstalledApp](./serverdatastatus-definitions-serializedinstalledapp.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp`
|
* [SerializedInstalledApp](./serverdatastatus-definitions-serializedinstalledapp.md) – `https://timelimit.io/ServerDataStatus#/definitions/SerializedInstalledApp`
|
||||||
|
|
||||||
* [SerializedMarkTaskPendingAction](./serializedapplogicaction-definitions-serializedmarktaskpendingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction`
|
* [SerializedMarkTaskPendingAction](./serializedapplogicaction-definitions-serializedmarktaskpendingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction`
|
||||||
|
|
||||||
* [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
* [SerializedPingAction](./serializedapplogicaction-definitions-serializedpingaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction`
|
||||||
|
|
||||||
* [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
* [SerializedRemoveCategoryAppsAction](./serializedparentaction-definitions-serializedremovecategoryappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction`
|
||||||
|
|
||||||
* [SerializedRemoveParentU2fKeyAction](./serializedparentaction-definitions-serializedremoveparentu2fkeyaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction`
|
* [SerializedRemoveInstalledAppsAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction`
|
||||||
|
|
||||||
* [SerializedRemoveUserAction](./serializedparentaction-definitions-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction`
|
* [SerializedRemoveParentU2fKeyAction](./serializedparentaction-definitions-serializedremoveparentu2fkeyaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction`
|
||||||
|
|
||||||
* [SerializedRenameChildAction](./serializedparentaction-definitions-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction`
|
* [SerializedRemoveUserAction](./serializedparentaction-definitions-serializedremoveuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction`
|
||||||
|
|
||||||
* [SerializedReplyToKeyRequestAction](./serializedapplogicaction-definitions-serializedreplytokeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction`
|
* [SerializedRenameChildAction](./serializedparentaction-definitions-serializedrenamechildaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction`
|
||||||
|
|
||||||
* [SerializedReportU2fLoginAction](./serializedparentaction-definitions-serializedreportu2floginaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedReportU2fLoginAction`
|
* [SerializedReplyToKeyRequestAction](./serializedapplogicaction-definitions-serializedreplytokeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction`
|
||||||
|
|
||||||
* [SerializedReviewChildTaskAction](./serializedparentaction-definitions-serializedreviewchildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction`
|
* [SerializedReportU2fLoginAction](./serializedparentaction-definitions-serializedreportu2floginaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedReportU2fLoginAction`
|
||||||
|
|
||||||
* [SerializedSendKeyRequestAction](./serializedapplogicaction-definitions-serializedsendkeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction`
|
* [SerializedReviewChildTaskAction](./serializedparentaction-definitions-serializedreviewchildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction`
|
||||||
|
|
||||||
* [SerializedSetCategoryExtraTimeAction](./serializedparentaction-definitions-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction`
|
* [SerializedSendKeyRequestAction](./serializedapplogicaction-definitions-serializedsendkeyrequestaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction`
|
||||||
|
|
||||||
* [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction`
|
* [SerializedSetCategoryExtraTimeAction](./serializedparentaction-definitions-serializedsetcategoryextratimeaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction`
|
||||||
|
|
||||||
* [SerializedSetChildPasswordAction](./serializedparentaction-definitions-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction`
|
* [SerializedSetCategoryForUnassignedAppsAction](./serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction`
|
||||||
|
|
||||||
* [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction`
|
* [SerializedSetChildPasswordAction](./serializedparentaction-definitions-serializedsetchildpasswordaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction`
|
||||||
|
|
||||||
* [SerializedSetDeviceDefaultUserAction](./serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction`
|
* [SerializedSetConsiderRebootManipulationAction](./serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction`
|
||||||
|
|
||||||
* [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction`
|
* [SerializedSetDeviceDefaultUserAction](./serializedparentaction-definitions-serializedsetdevicedefaultuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction`
|
||||||
|
|
||||||
* [SerializedSetDeviceUserAction](./serializedparentaction-definitions-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction`
|
* [SerializedSetDeviceDefaultUserTimeoutAction](./serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction`
|
||||||
|
|
||||||
* [SerializedSetKeepSignedInAction](./serializedparentaction-definitions-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction`
|
* [SerializedSetDeviceUserAction](./serializedparentaction-definitions-serializedsetdeviceuseraction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceUserAction`
|
||||||
|
|
||||||
* [SerializedSetParentCategoryAction](./serializedparentaction-definitions-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction`
|
* [SerializedSetKeepSignedInAction](./serializedparentaction-definitions-serializedsetkeepsignedinaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetKeepSignedInAction`
|
||||||
|
|
||||||
* [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction`
|
* [SerializedSetParentCategoryAction](./serializedparentaction-definitions-serializedsetparentcategoryaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetParentCategoryAction`
|
||||||
|
|
||||||
* [SerializedSetSendDeviceConnected](./serializedparentaction-definitions-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected`
|
* [SerializedSetRelaxPrimaryDeviceAction](./serializedparentaction-definitions-serializedsetrelaxprimarydeviceaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetRelaxPrimaryDeviceAction`
|
||||||
|
|
||||||
* [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction`
|
* [SerializedSetSendDeviceConnected](./serializedparentaction-definitions-serializedsetsenddeviceconnected.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetSendDeviceConnected`
|
||||||
|
|
||||||
* [SerializedSetUserTimezoneAction](./serializedparentaction-definitions-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction`
|
* [SerializedSetUserDisableLimitsUntilAction](./serializedparentaction-definitions-serializedsetuserdisablelimitsuntilaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserDisableLimitsUntilAction`
|
||||||
|
|
||||||
* [SerializedSignOutAtDeviceAction](./serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction`
|
* [SerializedSetUserTimezoneAction](./serializedparentaction-definitions-serializedsetusertimezoneaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedSetUserTimezoneAction`
|
||||||
|
|
||||||
* [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule`
|
* [SerializedSignOutAtDeviceAction](./serializedapplogicaction-definitions-serializedsignoutatdeviceaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction`
|
||||||
|
|
||||||
* [SerializedUpdatCategoryDisableLimitsAction](./serializedparentaction-definitions-serializedupdatcategorydisablelimitsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdatCategoryDisableLimitsAction`
|
* [SerializedTimeLimitRule](./serializedparentaction-definitions-serializedtimelimitrule.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedTimeLimitRule`
|
||||||
|
|
||||||
* [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction`
|
* [SerializedUpdatCategoryDisableLimitsAction](./serializedparentaction-definitions-serializedupdatcategorydisablelimitsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdatCategoryDisableLimitsAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction`
|
* [SerializedUpdateAppActivitiesAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryBlockAllNotificationsAction](./serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction`
|
* [SerializedUpdateCategoryBatteryLimitAction](./serializedparentaction-definitions-serializedupdatecategorybatterylimitaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBatteryLimitAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction`
|
* [SerializedUpdateCategoryBlockAllNotificationsAction](./serializedparentaction-definitions-serializedupdatecategoryblockallnotificationsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockAllNotificationsAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryFlagsAction](./serializedparentaction-definitions-serializedupdatecategoryflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryFlagsAction`
|
* [SerializedUpdateCategoryBlockedTimesAction](./serializedparentaction-definitions-serializedupdatecategoryblockedtimesaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryBlockedTimesAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategorySortingAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction`
|
* [SerializedUpdateCategoryFlagsAction](./serializedparentaction-definitions-serializedupdatecategoryflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryFlagsAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction`
|
* [SerializedUpdateCategorySortingAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction`
|
* [SerializedUpdateCategoryTemporarilyBlockedAction](./serializedparentaction-definitions-serializedupdatecategorytemporarilyblockedaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTemporarilyBlockedAction`
|
||||||
|
|
||||||
* [SerializedUpdateCategoryTitleAction](./serializedparentaction-definitions-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction`
|
* [SerializedUpdateCategoryTimeWarningsAction](./serializedparentaction-definitions-serializedupdatecategorytimewarningsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTimeWarningsAction`
|
||||||
|
|
||||||
* [SerializedUpdateChildTaskAction](./serializedparentaction-definitions-serializedupdatechildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateChildTaskAction`
|
* [SerializedUpdateCategoryTitleAction](./serializedparentaction-definitions-serializedupdatecategorytitleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategoryTitleAction`
|
||||||
|
|
||||||
* [SerializedUpdateDeviceNameAction](./serializedparentaction-definitions-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction`
|
* [SerializedUpdateChildTaskAction](./serializedparentaction-definitions-serializedupdatechildtaskaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateChildTaskAction`
|
||||||
|
|
||||||
* [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction`
|
* [SerializedUpdateDeviceNameAction](./serializedparentaction-definitions-serializedupdatedevicenameaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateDeviceNameAction`
|
||||||
|
|
||||||
* [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction`
|
* [SerializedUpdateDeviceStatusAction](./serializedapplogicaction-definitions-serializedupdatedevicestatusaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction`
|
||||||
|
|
||||||
* [SerializedUpdateInstalledAppsAction](./serializedapplogicaction-definitions-serializedupdateinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction`
|
* [SerializedUpdateEnableActivityLevelBlockingAction](./serializedparentaction-definitions-serializedupdateenableactivitylevelblockingaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateEnableActivityLevelBlockingAction`
|
||||||
|
|
||||||
* [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction`
|
* [SerializedUpdateInstalledAppsAction](./serializedapplogicaction-definitions-serializedupdateinstalledappsaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction`
|
||||||
|
|
||||||
* [SerializedUpdateTimelimitRuleAction](./serializedparentaction-definitions-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction`
|
* [SerializedUpdateParentNotificationFlagsAction](./serializedparentaction-definitions-serializedupdateparentnotificationflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateParentNotificationFlagsAction`
|
||||||
|
|
||||||
* [SerializedUpdateUserFlagsAction](./serializedparentaction-definitions-serializedupdateuserflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserFlagsAction`
|
* [SerializedUpdateTimelimitRuleAction](./serializedparentaction-definitions-serializedupdatetimelimitruleaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateTimelimitRuleAction`
|
||||||
|
|
||||||
* [SerializedUpdateUserLimitLoginCategory](./serializedparentaction-definitions-serializedupdateuserlimitlogincategory.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserLimitLoginCategory`
|
* [SerializedUpdateUserFlagsAction](./serializedparentaction-definitions-serializedupdateuserflagsaction.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserFlagsAction`
|
||||||
|
|
||||||
* [SerializedUpdateUserLimitLoginPreBlockDuration](./serializedparentaction-definitions-serializedupdateuserlimitloginpreblockduration.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserLimitLoginPreBlockDuration`
|
* [SerializedUpdateUserLimitLoginCategory](./serializedparentaction-definitions-serializedupdateuserlimitlogincategory.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserLimitLoginCategory`
|
||||||
|
|
||||||
* [SerializedUploadDevicePublicKeyAction](./serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction`
|
* [SerializedUpdateUserLimitLoginPreBlockDuration](./serializedparentaction-definitions-serializedupdateuserlimitloginpreblockduration.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateUserLimitLoginPreBlockDuration`
|
||||||
|
|
||||||
* [ServerCategoryNetworkId](./serverdatastatus-definitions-servercategorynetworkid.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerCategoryNetworkId`
|
* [SerializedUploadDevicePublicKeyAction](./serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction`
|
||||||
|
|
||||||
* [ServerCryptContainer](./serverdatastatus-definitions-servercryptcontainer.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerCryptContainer`
|
* [ServerCategoryNetworkId](./serverdatastatus-definitions-servercategorynetworkid.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerCategoryNetworkId`
|
||||||
|
|
||||||
* [ServerDeviceData](./serverdatastatus-definitions-serverdevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData`
|
* [ServerCryptContainer](./serverdatastatus-definitions-servercryptcontainer.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerCryptContainer`
|
||||||
|
|
||||||
* [ServerDeviceList](./serverdatastatus-definitions-serverdevicelist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList`
|
* [ServerDeviceData](./serverdatastatus-definitions-serverdevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceData`
|
||||||
|
|
||||||
* [ServerDhKey](./serverdatastatus-definitions-serverdhkey.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDhKey`
|
* [ServerDeviceList](./serverdatastatus-definitions-serverdevicelist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList`
|
||||||
|
|
||||||
* [ServerExtendedDeviceData](./serverdatastatus-definitions-serverextendeddevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerExtendedDeviceData`
|
* [ServerDhKey](./serverdatastatus-definitions-serverdhkey.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDhKey`
|
||||||
|
|
||||||
* [ServerInstalledAppsData](./serverdatastatus-definitions-serverinstalledappsdata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData`
|
* [ServerExtendedDeviceData](./serverdatastatus-definitions-serverextendeddevicedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerExtendedDeviceData`
|
||||||
|
|
||||||
* [ServerKeyRequest](./serverdatastatus-definitions-serverkeyrequest.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyRequest`
|
* [ServerInstalledAppsData](./serverdatastatus-definitions-serverinstalledappsdata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData`
|
||||||
|
|
||||||
* [ServerKeyResponse](./serverdatastatus-definitions-serverkeyresponse.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyResponse`
|
* [ServerKeyRequest](./serverdatastatus-definitions-serverkeyrequest.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyRequest`
|
||||||
|
|
||||||
* [ServerSessionDurationItem](./serverdatastatus-definitions-serversessiondurationitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerSessionDurationItem`
|
* [ServerKeyResponse](./serverdatastatus-definitions-serverkeyresponse.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerKeyResponse`
|
||||||
|
|
||||||
* [ServerTimeLimitRule](./serverdatastatus-definitions-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule`
|
* [ServerPing](./serverdatastatus-definitions-serverping.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerPing`
|
||||||
|
|
||||||
* [ServerUpdatedCategoryAssignedApps](./serverdatastatus-definitions-serverupdatedcategoryassignedapps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps`
|
* [ServerSessionDurationItem](./serverdatastatus-definitions-serversessiondurationitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerSessionDurationItem`
|
||||||
|
|
||||||
* [ServerUpdatedCategoryBaseData](./serverdatastatus-definitions-serverupdatedcategorybasedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData`
|
* [ServerTimeLimitRule](./serverdatastatus-definitions-servertimelimitrule.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerTimeLimitRule`
|
||||||
|
|
||||||
* [ServerUpdatedCategoryTask](./serverdatastatus-definitions-serverupdatedcategorytask.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTask`
|
* [ServerUpdatedCategoryAssignedApps](./serverdatastatus-definitions-serverupdatedcategoryassignedapps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps`
|
||||||
|
|
||||||
* [ServerUpdatedCategoryTasks](./serverdatastatus-definitions-serverupdatedcategorytasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks`
|
* [ServerUpdatedCategoryBaseData](./serverdatastatus-definitions-serverupdatedcategorybasedata.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData`
|
||||||
|
|
||||||
* [ServerUpdatedCategoryUsedTimes](./serverdatastatus-definitions-serverupdatedcategoryusedtimes.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes`
|
* [ServerUpdatedCategoryTask](./serverdatastatus-definitions-serverupdatedcategorytask.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTask`
|
||||||
|
|
||||||
* [ServerUpdatedTimeLimitRules](./serverdatastatus-definitions-serverupdatedtimelimitrules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules`
|
* [ServerUpdatedCategoryTasks](./serverdatastatus-definitions-serverupdatedcategorytasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks`
|
||||||
|
|
||||||
* [ServerUsedTimeItem](./serverdatastatus-definitions-serverusedtimeitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUsedTimeItem`
|
* [ServerUpdatedCategoryUsedTimes](./serverdatastatus-definitions-serverupdatedcategoryusedtimes.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes`
|
||||||
|
|
||||||
* [ServerUserEntry](./serverdatastatus-definitions-serveruserentry.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserEntry`
|
* [ServerUpdatedTimeLimitRules](./serverdatastatus-definitions-serverupdatedtimelimitrules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules`
|
||||||
|
|
||||||
* [ServerUserList](./serverdatastatus-definitions-serveruserlist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList`
|
* [ServerUsedTimeItem](./serverdatastatus-definitions-serverusedtimeitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUsedTimeItem`
|
||||||
|
|
||||||
* [U2fData](./serverdatastatus-definitions-u2fdata.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData`
|
* [ServerUserEntry](./serverdatastatus-definitions-serveruserentry.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserEntry`
|
||||||
|
|
||||||
* [U2fItem](./serverdatastatus-definitions-u2fitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fItem`
|
* [ServerUserList](./serverdatastatus-definitions-serveruserlist.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
* [U2fData](./serverdatastatus-definitions-u2fdata.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
* [U2fItem](./serverdatastatus-definitions-u2fitem.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fItem`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps`
|
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories`
|
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
||||||
|
|
||||||
* [Untitled object in ClientPullChangesRequest](./clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md) – `https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail`
|
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
||||||
|
|
||||||
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
|
||||||
|
|
||||||
* [Untitled object in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items`
|
|
||||||
|
|
||||||
### Arrays
|
### Arrays
|
||||||
|
|
||||||
* [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
* [Untitled array in ClientPushChangesRequest](./clientpushchangesrequest-properties-actions.md) – `https://timelimit.io/ClientPushChangesRequest#/properties/actions`
|
||||||
|
|
||||||
* [Untitled array in DeleteAccountPayload](./deleteaccountpayload-properties-mailauthtokens.md) – `https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens`
|
* [Untitled array in DeleteAccountPayload](./deleteaccountpayload-properties-mailauthtokens.md) – `https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as/items`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as/items`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl/items`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl/items`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps`
|
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i`
|
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as`
|
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as/items`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-devices2.md) – `https://timelimit.io/ServerDataStatus#/properties/devices2`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl/items`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/properties/apps`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed/items`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-rmcategories.md) – `https://timelimit.io/ServerDataStatus#/properties/rmCategories`
|
||||||
|
|
||||||
* [Untitled array in SerializedAppLogicAction](./serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md) – `https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-categorybase.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryBase`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-networks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/networks`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-atw.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/atw`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-categoryapp.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryApp`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-usedtimes.md) – `https://timelimit.io/ServerDataStatus#/properties/usedTimes`
|
||||||
|
|
||||||
* [Untitled array in SerializedParentAction](./serializedparentaction-definitions-serializedupdatecategorysortingaction-properties-categoryids.md) – `https://timelimit.io/SerializedParentAction#/definitions/SerializedUpdateCategorySortingAction/properties/categoryIds`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-sessiondurations.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/sessionDurations`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-devices2.md) – `https://timelimit.io/ServerDataStatus#/properties/devices2`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/properties/rules`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/properties/apps`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/properties/tasks`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorytasks-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks/properties/tasks`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-rmcategories.md) – `https://timelimit.io/ServerDataStatus#/properties/rmCategories`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-categorybase.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryBase`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-krq.md) – `https://timelimit.io/ServerDataStatus#/properties/krq`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-networks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/networks`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-kr.md) – `https://timelimit.io/ServerDataStatus#/properties/kr`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-atw.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/atw`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-pings.md) – `https://timelimit.io/ServerDataStatus#/properties/pings`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-categoryapp.md) – `https://timelimit.io/ServerDataStatus#/properties/categoryApp`
|
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-usedtimes.md) – `https://timelimit.io/ServerDataStatus#/properties/usedTimes`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-sessiondurations.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/sessionDurations`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/properties/rules`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/properties/tasks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorytasks-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks/properties/tasks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-krq.md) – `https://timelimit.io/ServerDataStatus#/properties/krq`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-properties-kr.md) – `https://timelimit.io/ServerDataStatus#/properties/kr`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverdevicelist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerDeviceList/properties/data`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverinstalledappsdata-properties-activities.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerInstalledAppsData/properties/activities`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-networks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/networks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorybasedata-properties-atw.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryBaseData/properties/atw`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryassignedapps-properties-apps.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryAssignedApps/properties/apps`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-times.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/times`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategoryusedtimes-properties-sessiondurations.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryUsedTimes/properties/sessionDurations`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedtimelimitrules-properties-rules.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedTimeLimitRules/properties/rules`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serverupdatedcategorytasks-properties-tasks.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUpdatedCategoryTasks/properties/tasks`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-serveruserlist-properties-data.md) – `https://timelimit.io/ServerDataStatus#/definitions/ServerUserList/properties/data`
|
|
||||||
|
|
||||||
* [Untitled array in ServerDataStatus](./serverdatastatus-definitions-u2fdata-properties-d.md) – `https://timelimit.io/ServerDataStatus#/definitions/U2fData/properties/d`
|
|
||||||
|
|
||||||
## Version Note
|
## Version Note
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
"$ref": "#/definitions/SerializedMarkTaskPendingAction"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/SerializedPingAction"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
"$ref": "#/definitions/SerializedUpdateInstalledAppsAction"
|
||||||
},
|
},
|
||||||
@@ -309,6 +312,43 @@
|
|||||||
],
|
],
|
||||||
"title": "SerializedMarkTaskPendingAction"
|
"title": "SerializedMarkTaskPendingAction"
|
||||||
},
|
},
|
||||||
|
"SerializedPingAction": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"PING"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"event": {
|
||||||
|
"$ref": "#/definitions/PingEvent"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"event",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "SerializedPingAction"
|
||||||
|
},
|
||||||
|
"PingEvent": {
|
||||||
|
"enum": [
|
||||||
|
"clear",
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
"title": "PingEvent"
|
||||||
|
},
|
||||||
"SerializedUpdateInstalledAppsAction": {
|
"SerializedUpdateInstalledAppsAction": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|||||||
@@ -410,6 +410,9 @@
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -1458,6 +1461,9 @@
|
|||||||
},
|
},
|
||||||
"perDay": {
|
"perDay": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"e": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
@@ -67,6 +67,12 @@
|
|||||||
"$ref": "#/definitions/ServerKeyResponse"
|
"$ref": "#/definitions/ServerKeyResponse"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"pings": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/ServerPing"
|
||||||
|
}
|
||||||
|
},
|
||||||
"dh": {
|
"dh": {
|
||||||
"$ref": "#/definitions/ServerDhKey"
|
"$ref": "#/definitions/ServerDhKey"
|
||||||
},
|
},
|
||||||
@@ -927,6 +933,31 @@
|
|||||||
],
|
],
|
||||||
"title": "ServerKeyResponse"
|
"title": "ServerKeyResponse"
|
||||||
},
|
},
|
||||||
|
"ServerPing": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"deviceId": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"enum": [
|
||||||
|
"ping",
|
||||||
|
"pong"
|
||||||
|
],
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"deviceId",
|
||||||
|
"token",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"title": "ServerPing"
|
||||||
|
},
|
||||||
"ServerDhKey": {
|
"ServerDhKey": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ https://timelimit.io/CanDoPurchaseRequest
|
|||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :---------------------------------- | :------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| [type](#type) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") |
|
| [type](#type) | `string` | Optional | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type") |
|
||||||
| [deviceAuthToken](#deviceauthtoken) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") |
|
| [deviceAuthToken](#deviceauthtoken) | `string` | Required | cannot be null | [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken") |
|
||||||
|
|
||||||
## type
|
## type
|
||||||
@@ -27,13 +27,13 @@ https://timelimit.io/CanDoPurchaseRequest
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type")
|
* defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-type.md "https://timelimit.io/CanDoPurchaseRequest#/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/CanDoPurchaseRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken")
|
* defined in: [CanDoPurchaseRequest](candopurchaserequest-properties-deviceauthtoken.md "https://timelimit.io/CanDoPurchaseRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/CanRecoverPasswordRequest
|
|||||||
|
|
||||||
`mailAuthToken`
|
`mailAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/mailAuthToken")
|
* defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/mailAuthToken")
|
||||||
|
|
||||||
### mailAuthToken Type
|
### mailAuthToken Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/CanRecoverPasswordRequest
|
|||||||
|
|
||||||
`parentUserId`
|
`parentUserId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-parentuserid.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/parentUserId")
|
* defined in: [CanRecoverPasswordRequest](canrecoverpasswordrequest-properties-parentuserid.md "https://timelimit.io/CanRecoverPasswordRequest#/properties/parentUserId")
|
||||||
|
|
||||||
### parentUserId Type
|
### parentUserId Type
|
||||||
|
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus
|
|||||||
|
|
||||||
`base`
|
`base`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base")
|
||||||
|
|
||||||
### base Type
|
### base Type
|
||||||
|
|
||||||
@@ -48,13 +48,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus
|
|||||||
|
|
||||||
`apps`
|
`apps`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps")
|
||||||
|
|
||||||
### apps Type
|
### apps Type
|
||||||
|
|
||||||
@@ -66,13 +66,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus
|
|||||||
|
|
||||||
`rules`
|
`rules`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules")
|
||||||
|
|
||||||
### rules Type
|
### rules Type
|
||||||
|
|
||||||
@@ -84,13 +84,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus
|
|||||||
|
|
||||||
`usedTime`
|
`usedTime`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime")
|
||||||
|
|
||||||
### usedTime Type
|
### usedTime Type
|
||||||
|
|
||||||
@@ -102,13 +102,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus
|
|||||||
|
|
||||||
`tasks`
|
`tasks`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-tasks.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/tasks")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-tasks.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/tasks")
|
||||||
|
|
||||||
### tasks Type
|
### tasks Type
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -26,13 +26,13 @@ Additional properties are allowed, as long as they follow this schema:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps/additionalProperties")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps-additionalproperties.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps/additionalProperties")
|
||||||
|
|
||||||
### additionalProperties Type
|
### additionalProperties Type
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -26,13 +26,13 @@ Additional properties are allowed, as long as they follow this schema:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `object` ([CategoryDataStatus](clientpullchangesrequest-definitions-categorydatastatus.md))
|
* Type: `object` ([CategoryDataStatus](clientpullchangesrequest-definitions-categorydatastatus.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories/additionalProperties")
|
||||||
|
|
||||||
### additionalProperties Type
|
### additionalProperties Type
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -26,13 +26,13 @@ Additional properties are allowed, as long as they follow this schema:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `object` ([DeviceDataStatus](clientpullchangesrequest-definitions-devicedatastatus.md))
|
* Type: `object` ([DeviceDataStatus](clientpullchangesrequest-definitions-devicedatastatus.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail/additionalProperties")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail/additionalProperties")
|
||||||
|
|
||||||
### additionalProperties Type
|
### additionalProperties Type
|
||||||
|
|
||||||
|
|||||||
@@ -35,13 +35,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`devices`
|
`devices`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices")
|
||||||
|
|
||||||
### devices Type
|
### devices Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`apps`
|
`apps`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps")
|
||||||
|
|
||||||
### apps Type
|
### apps Type
|
||||||
|
|
||||||
@@ -71,13 +71,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`categories`
|
`categories`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories")
|
||||||
|
|
||||||
### categories Type
|
### categories Type
|
||||||
|
|
||||||
@@ -89,13 +89,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`users`
|
`users`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users")
|
||||||
|
|
||||||
### users Type
|
### users Type
|
||||||
|
|
||||||
@@ -107,13 +107,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`clientLevel`
|
`clientLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-clientlevel.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/clientLevel")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-clientlevel.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/clientLevel")
|
||||||
|
|
||||||
### clientLevel Type
|
### clientLevel Type
|
||||||
|
|
||||||
@@ -125,13 +125,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`devicesDetail`
|
`devicesDetail`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail")
|
||||||
|
|
||||||
### devicesDetail Type
|
### devicesDetail Type
|
||||||
|
|
||||||
@@ -143,13 +143,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`kri`
|
`kri`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kri.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kri")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kri.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kri")
|
||||||
|
|
||||||
### kri Type
|
### kri Type
|
||||||
|
|
||||||
@@ -161,13 +161,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`kr`
|
`kr`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kr.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kr")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kr.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kr")
|
||||||
|
|
||||||
### kr Type
|
### kr Type
|
||||||
|
|
||||||
@@ -179,13 +179,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`dh`
|
`dh`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-dh.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/dh")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-dh.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/dh")
|
||||||
|
|
||||||
### dh Type
|
### dh Type
|
||||||
|
|
||||||
@@ -197,13 +197,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus
|
|||||||
|
|
||||||
`u2f`
|
`u2f`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-u2f.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/u2f")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-u2f.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/u2f")
|
||||||
|
|
||||||
### u2f Type
|
### u2f Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus
|
|||||||
|
|
||||||
`appsB`
|
`appsB`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsb.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsB")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsb.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsB")
|
||||||
|
|
||||||
### appsB Type
|
### appsB Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus
|
|||||||
|
|
||||||
`appsD`
|
`appsD`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsd.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsD")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsd.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsD")
|
||||||
|
|
||||||
### appsD Type
|
### appsD Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/ClientPullChangesRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPullChangesRequest#/properties/deviceAuthToken")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPullChangesRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/ClientPullChangesRequest
|
|||||||
|
|
||||||
`status`
|
`status`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([ClientDataStatus](clientpullchangesrequest-definitions-clientdatastatus.md))
|
* Type: `object` ([ClientDataStatus](clientpullchangesrequest-definitions-clientdatastatus.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus.md "https://timelimit.io/ClientPullChangesRequest#/properties/status")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus.md "https://timelimit.io/ClientPullChangesRequest#/properties/status")
|
||||||
|
|
||||||
### status Type
|
### status Type
|
||||||
|
|
||||||
@@ -86,13 +86,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`devices`
|
`devices`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devices.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devices")
|
||||||
|
|
||||||
#### devices Type
|
#### devices Type
|
||||||
|
|
||||||
@@ -104,13 +104,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`apps`
|
`apps`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/apps")
|
||||||
|
|
||||||
#### apps Type
|
#### apps Type
|
||||||
|
|
||||||
@@ -122,13 +122,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`categories`
|
`categories`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-categories.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/categories")
|
||||||
|
|
||||||
#### categories Type
|
#### categories Type
|
||||||
|
|
||||||
@@ -140,13 +140,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`users`
|
`users`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-users.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/users")
|
||||||
|
|
||||||
#### users Type
|
#### users Type
|
||||||
|
|
||||||
@@ -158,13 +158,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`clientLevel`
|
`clientLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-clientlevel.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/clientLevel")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-clientlevel.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/clientLevel")
|
||||||
|
|
||||||
#### clientLevel Type
|
#### clientLevel Type
|
||||||
|
|
||||||
@@ -176,13 +176,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`devicesDetail`
|
`devicesDetail`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md))
|
* Type: `object` ([Details](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-devicesdetail.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/devicesDetail")
|
||||||
|
|
||||||
#### devicesDetail Type
|
#### devicesDetail Type
|
||||||
|
|
||||||
@@ -194,13 +194,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`kri`
|
`kri`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kri.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kri")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kri.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kri")
|
||||||
|
|
||||||
#### kri Type
|
#### kri Type
|
||||||
|
|
||||||
@@ -212,13 +212,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`kr`
|
`kr`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kr.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kr")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-kr.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/kr")
|
||||||
|
|
||||||
#### kr Type
|
#### kr Type
|
||||||
|
|
||||||
@@ -230,13 +230,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`dh`
|
`dh`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-dh.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/dh")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-dh.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/dh")
|
||||||
|
|
||||||
#### dh Type
|
#### dh Type
|
||||||
|
|
||||||
@@ -248,13 +248,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`u2f`
|
`u2f`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-u2f.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/u2f")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-clientdatastatus-properties-u2f.md "https://timelimit.io/ClientPullChangesRequest#/definitions/ClientDataStatus/properties/u2f")
|
||||||
|
|
||||||
#### u2f Type
|
#### u2f Type
|
||||||
|
|
||||||
@@ -282,13 +282,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`base`
|
`base`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-base.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/base")
|
||||||
|
|
||||||
#### base Type
|
#### base Type
|
||||||
|
|
||||||
@@ -300,13 +300,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`apps`
|
`apps`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-apps.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/apps")
|
||||||
|
|
||||||
#### apps Type
|
#### apps Type
|
||||||
|
|
||||||
@@ -318,13 +318,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`rules`
|
`rules`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-rules.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/rules")
|
||||||
|
|
||||||
#### rules Type
|
#### rules Type
|
||||||
|
|
||||||
@@ -336,13 +336,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`usedTime`
|
`usedTime`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-usedtime.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/usedTime")
|
||||||
|
|
||||||
#### usedTime Type
|
#### usedTime Type
|
||||||
|
|
||||||
@@ -354,13 +354,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`tasks`
|
`tasks`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-tasks.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/tasks")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-categorydatastatus-properties-tasks.md "https://timelimit.io/ClientPullChangesRequest#/definitions/CategoryDataStatus/properties/tasks")
|
||||||
|
|
||||||
#### tasks Type
|
#### tasks Type
|
||||||
|
|
||||||
@@ -385,13 +385,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`appsB`
|
`appsB`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsb.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsB")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsb.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsB")
|
||||||
|
|
||||||
#### appsB Type
|
#### appsB Type
|
||||||
|
|
||||||
@@ -403,13 +403,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`appsD`
|
`appsD`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsd.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsD")
|
* defined in: [ClientPullChangesRequest](clientpullchangesrequest-definitions-devicedatastatus-properties-appsd.md "https://timelimit.io/ClientPullChangesRequest#/definitions/DeviceDataStatus/properties/appsD")
|
||||||
|
|
||||||
#### appsD Type
|
#### appsD Type
|
||||||
|
|
||||||
|
|||||||
+20
-20
@@ -30,13 +30,13 @@ https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequ
|
|||||||
|
|
||||||
`encodedAction`
|
`encodedAction`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/encodedAction")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/encodedAction")
|
||||||
|
|
||||||
### encodedAction Type
|
### encodedAction Type
|
||||||
|
|
||||||
@@ -48,13 +48,13 @@ https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequ
|
|||||||
|
|
||||||
`sequenceNumber`
|
`sequenceNumber`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/sequenceNumber")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/sequenceNumber")
|
||||||
|
|
||||||
### sequenceNumber Type
|
### sequenceNumber Type
|
||||||
|
|
||||||
@@ -66,13 +66,13 @@ https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequ
|
|||||||
|
|
||||||
`integrity`
|
`integrity`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/integrity")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/integrity")
|
||||||
|
|
||||||
### integrity Type
|
### integrity Type
|
||||||
|
|
||||||
@@ -84,13 +84,13 @@ https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequ
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/type")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -112,13 +112,13 @@ https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequ
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/userId")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/userId")
|
||||||
|
|
||||||
### userId Type
|
### userId Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/ClientPushChangesRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPushChangesRequest#/properties/deviceAuthToken")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-deviceauthtoken.md "https://timelimit.io/ClientPushChangesRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/ClientPushChangesRequest
|
|||||||
|
|
||||||
`actions`
|
`actions`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object[]` ([ClientPushChangesRequestAction](clientpushchangesrequest-definitions-clientpushchangesrequestaction.md))
|
* Type: `object[]` ([ClientPushChangesRequestAction](clientpushchangesrequest-definitions-clientpushchangesrequestaction.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-properties-actions.md "https://timelimit.io/ClientPushChangesRequest#/properties/actions")
|
||||||
|
|
||||||
### actions Type
|
### actions Type
|
||||||
|
|
||||||
@@ -81,13 +81,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`encodedAction`
|
`encodedAction`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/encodedAction")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-encodedaction.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/encodedAction")
|
||||||
|
|
||||||
#### encodedAction Type
|
#### encodedAction Type
|
||||||
|
|
||||||
@@ -99,13 +99,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`sequenceNumber`
|
`sequenceNumber`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/sequenceNumber")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-sequencenumber.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/sequenceNumber")
|
||||||
|
|
||||||
#### sequenceNumber Type
|
#### sequenceNumber Type
|
||||||
|
|
||||||
@@ -117,13 +117,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`integrity`
|
`integrity`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/integrity")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-integrity.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/integrity")
|
||||||
|
|
||||||
#### integrity Type
|
#### integrity Type
|
||||||
|
|
||||||
@@ -135,13 +135,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/type")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-type.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/type")
|
||||||
|
|
||||||
#### type Type
|
#### type Type
|
||||||
|
|
||||||
@@ -163,13 +163,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/userId")
|
* defined in: [ClientPushChangesRequest](clientpushchangesrequest-definitions-clientpushchangesrequestaction-properties-userid.md "https://timelimit.io/ClientPushChangesRequest#/definitions/ClientPushChangesRequestAction/properties/userId")
|
||||||
|
|
||||||
#### userId Type
|
#### userId Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo
|
|||||||
|
|
||||||
`model`
|
`model`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model")
|
||||||
|
|
||||||
### model Type
|
### model Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParent
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/hash")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/hash")
|
||||||
|
|
||||||
### hash Type
|
### hash Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParent
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
||||||
|
|
||||||
### secondHash Type
|
### secondHash Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParent
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
### secondSalt Type
|
### secondSalt Type
|
||||||
|
|
||||||
|
|||||||
@@ -32,13 +32,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`mailAuthToken`
|
`mailAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-mailauthtoken.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/mailAuthToken")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-mailauthtoken.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/mailAuthToken")
|
||||||
|
|
||||||
### mailAuthToken Type
|
### mailAuthToken Type
|
||||||
|
|
||||||
@@ -50,13 +50,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`parentPassword`
|
`parentPassword`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([PlaintextParentPassword](createfamilybymailtokenrequest-definitions-plaintextparentpassword.md))
|
* Type: `object` ([PlaintextParentPassword](createfamilybymailtokenrequest-definitions-plaintextparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentPassword")
|
||||||
|
|
||||||
### parentPassword Type
|
### parentPassword Type
|
||||||
|
|
||||||
@@ -68,13 +68,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`parentDevice`
|
`parentDevice`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([NewDeviceInfo](createfamilybymailtokenrequest-definitions-newdeviceinfo.md))
|
* Type: `object` ([NewDeviceInfo](createfamilybymailtokenrequest-definitions-newdeviceinfo.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentDevice")
|
||||||
|
|
||||||
### parentDevice Type
|
### parentDevice Type
|
||||||
|
|
||||||
@@ -86,13 +86,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`deviceName`
|
`deviceName`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-devicename.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/deviceName")
|
||||||
|
|
||||||
### deviceName Type
|
### deviceName Type
|
||||||
|
|
||||||
@@ -104,13 +104,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`timeZone`
|
`timeZone`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-timezone.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/timeZone")
|
||||||
|
|
||||||
### timeZone Type
|
### timeZone Type
|
||||||
|
|
||||||
@@ -122,13 +122,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`parentName`
|
`parentName`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-parentname.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/parentName")
|
||||||
|
|
||||||
### parentName Type
|
### parentName Type
|
||||||
|
|
||||||
@@ -140,13 +140,13 @@ https://timelimit.io/CreateFamilyByMailTokenRequest
|
|||||||
|
|
||||||
`clientLevel`
|
`clientLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-clientlevel.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/clientLevel")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-properties-clientlevel.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/properties/clientLevel")
|
||||||
|
|
||||||
### clientLevel Type
|
### clientLevel Type
|
||||||
|
|
||||||
@@ -174,13 +174,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/hash")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/hash")
|
||||||
|
|
||||||
#### hash Type
|
#### hash Type
|
||||||
|
|
||||||
@@ -192,13 +192,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
||||||
|
|
||||||
#### secondHash Type
|
#### secondHash Type
|
||||||
|
|
||||||
@@ -210,13 +210,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
#### secondSalt Type
|
#### secondSalt Type
|
||||||
|
|
||||||
@@ -240,13 +240,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`model`
|
`model`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model")
|
* defined in: [CreateFamilyByMailTokenRequest](createfamilybymailtokenrequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/CreateFamilyByMailTokenRequest#/definitions/NewDeviceInfo/properties/model")
|
||||||
|
|
||||||
#### model Type
|
#### model Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/CreateRegisterDeviceTokenRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-deviceauthtoken.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/deviceAuthToken")
|
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-deviceauthtoken.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/CreateRegisterDeviceTokenRequest
|
|||||||
|
|
||||||
`parentId`
|
`parentId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentid.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentId")
|
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentid.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentId")
|
||||||
|
|
||||||
### parentId Type
|
### parentId Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/CreateRegisterDeviceTokenRequest
|
|||||||
|
|
||||||
`parentPasswordSecondHash`
|
`parentPasswordSecondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentPasswordSecondHash")
|
* defined in: [CreateRegisterDeviceTokenRequest](createregisterdevicetokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/CreateRegisterDeviceTokenRequest#/properties/parentPasswordSecondHash")
|
||||||
|
|
||||||
### parentPasswordSecondHash Type
|
### parentPasswordSecondHash Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/DeleteAccountPayload
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-deviceauthtoken.md "https://timelimit.io/DeleteAccountPayload#/properties/deviceAuthToken")
|
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-deviceauthtoken.md "https://timelimit.io/DeleteAccountPayload#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/DeleteAccountPayload
|
|||||||
|
|
||||||
`mailAuthTokens`
|
`mailAuthTokens`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string[]`
|
* Type: `string[]`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-mailauthtokens.md "https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens")
|
* defined in: [DeleteAccountPayload](deleteaccountpayload-properties-mailauthtokens.md "https://timelimit.io/DeleteAccountPayload#/properties/mailAuthTokens")
|
||||||
|
|
||||||
### mailAuthTokens Type
|
### mailAuthTokens Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/FinishPurchaseByGooglePlayRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/deviceAuthToken")
|
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-deviceauthtoken.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/FinishPurchaseByGooglePlayRequest
|
|||||||
|
|
||||||
`receipt`
|
`receipt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-receipt.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/receipt")
|
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-receipt.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/receipt")
|
||||||
|
|
||||||
### receipt Type
|
### receipt Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/FinishPurchaseByGooglePlayRequest
|
|||||||
|
|
||||||
`signature`
|
`signature`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-signature.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/signature")
|
* defined in: [FinishPurchaseByGooglePlayRequest](finishpurchasebygoogleplayrequest-properties-signature.md "https://timelimit.io/FinishPurchaseByGooglePlayRequest#/properties/signature")
|
||||||
|
|
||||||
### signature Type
|
### signature Type
|
||||||
|
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ https://timelimit.io/IdentityTokenPayload
|
|||||||
|
|
||||||
`purpose`
|
`purpose`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-purpose.md "https://timelimit.io/IdentityTokenPayload#/properties/purpose")
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-purpose.md "https://timelimit.io/IdentityTokenPayload#/properties/purpose")
|
||||||
|
|
||||||
### purpose Type
|
### purpose Type
|
||||||
|
|
||||||
@@ -56,13 +56,13 @@ https://timelimit.io/IdentityTokenPayload
|
|||||||
|
|
||||||
`familyId`
|
`familyId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-familyid.md "https://timelimit.io/IdentityTokenPayload#/properties/familyId")
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-familyid.md "https://timelimit.io/IdentityTokenPayload#/properties/familyId")
|
||||||
|
|
||||||
### familyId Type
|
### familyId Type
|
||||||
|
|
||||||
@@ -74,13 +74,13 @@ https://timelimit.io/IdentityTokenPayload
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-userid.md "https://timelimit.io/IdentityTokenPayload#/properties/userId")
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-userid.md "https://timelimit.io/IdentityTokenPayload#/properties/userId")
|
||||||
|
|
||||||
### userId Type
|
### userId Type
|
||||||
|
|
||||||
@@ -92,13 +92,13 @@ https://timelimit.io/IdentityTokenPayload
|
|||||||
|
|
||||||
`mail`
|
`mail`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-mail.md "https://timelimit.io/IdentityTokenPayload#/properties/mail")
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-mail.md "https://timelimit.io/IdentityTokenPayload#/properties/mail")
|
||||||
|
|
||||||
### mail Type
|
### mail Type
|
||||||
|
|
||||||
@@ -110,13 +110,13 @@ https://timelimit.io/IdentityTokenPayload
|
|||||||
|
|
||||||
`exp`
|
`exp`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-exp.md "https://timelimit.io/IdentityTokenPayload#/properties/exp")
|
* defined in: [IdentityTokenPayload](identitytokenpayload-properties-exp.md "https://timelimit.io/IdentityTokenPayload#/properties/exp")
|
||||||
|
|
||||||
### exp Type
|
### exp Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/LinkParentMailAddressRequest
|
|||||||
|
|
||||||
`mailAuthToken`
|
`mailAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-mailauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/mailAuthToken")
|
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-mailauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/mailAuthToken")
|
||||||
|
|
||||||
### mailAuthToken Type
|
### mailAuthToken Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/LinkParentMailAddressRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-deviceauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/deviceAuthToken")
|
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-deviceauthtoken.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/LinkParentMailAddressRequest
|
|||||||
|
|
||||||
`parentUserId`
|
`parentUserId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentuserid.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentUserId")
|
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentuserid.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentUserId")
|
||||||
|
|
||||||
### parentUserId Type
|
### parentUserId Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/LinkParentMailAddressRequest
|
|||||||
|
|
||||||
`parentPasswordSecondHash`
|
`parentPasswordSecondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentPasswordSecondHash")
|
* defined in: [LinkParentMailAddressRequest](linkparentmailaddressrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/LinkParentMailAddressRequest#/properties/parentPasswordSecondHash")
|
||||||
|
|
||||||
### parentPasswordSecondHash Type
|
### parentPasswordSecondHash Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/MailAuthTokenRequestBody
|
|||||||
|
|
||||||
`mailAuthToken`
|
`mailAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [MailAuthTokenRequestBody](mailauthtokenrequestbody-properties-mailauthtoken.md "https://timelimit.io/MailAuthTokenRequestBody#/properties/mailAuthToken")
|
* defined in: [MailAuthTokenRequestBody](mailauthtokenrequestbody-properties-mailauthtoken.md "https://timelimit.io/MailAuthTokenRequestBody#/properties/mailAuthToken")
|
||||||
|
|
||||||
### mailAuthToken Type
|
### mailAuthToken Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPa
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/hash")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/hash")
|
||||||
|
|
||||||
### hash Type
|
### hash Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPa
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
||||||
|
|
||||||
### secondHash Type
|
### secondHash Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPa
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
### secondSalt Type
|
### secondSalt Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/RecoverParentPasswordRequest
|
|||||||
|
|
||||||
`mailAuthToken`
|
`mailAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/mailAuthToken")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-properties-mailauthtoken.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/mailAuthToken")
|
||||||
|
|
||||||
### mailAuthToken Type
|
### mailAuthToken Type
|
||||||
|
|
||||||
@@ -45,13 +45,13 @@ https://timelimit.io/RecoverParentPasswordRequest
|
|||||||
|
|
||||||
`password`
|
`password`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([PlaintextParentPassword](recoverparentpasswordrequest-definitions-plaintextparentpassword.md))
|
* Type: `object` ([PlaintextParentPassword](recoverparentpasswordrequest-definitions-plaintextparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/password")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword.md "https://timelimit.io/RecoverParentPasswordRequest#/properties/password")
|
||||||
|
|
||||||
### password Type
|
### password Type
|
||||||
|
|
||||||
@@ -79,13 +79,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/hash")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-hash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/hash")
|
||||||
|
|
||||||
#### hash Type
|
#### hash Type
|
||||||
|
|
||||||
@@ -97,13 +97,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondhash.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondHash")
|
||||||
|
|
||||||
#### secondHash Type
|
#### secondHash Type
|
||||||
|
|
||||||
@@ -115,13 +115,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
* defined in: [RecoverParentPasswordRequest](recoverparentpasswordrequest-definitions-plaintextparentpassword-properties-secondsalt.md "https://timelimit.io/RecoverParentPasswordRequest#/definitions/PlaintextParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
#### secondSalt Type
|
#### secondSalt Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo
|
|||||||
|
|
||||||
`model`
|
`model`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model")
|
||||||
|
|
||||||
### model Type
|
### model Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
|
|
||||||
`registerToken`
|
`registerToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-registertoken.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/registerToken")
|
||||||
|
|
||||||
### registerToken Type
|
### registerToken Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
|
|
||||||
`childDevice`
|
`childDevice`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([NewDeviceInfo](registerchilddevicerequest-definitions-newdeviceinfo.md))
|
* Type: `object` ([NewDeviceInfo](registerchilddevicerequest-definitions-newdeviceinfo.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/childDevice")
|
||||||
|
|
||||||
### childDevice Type
|
### childDevice Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
|
|
||||||
`deviceName`
|
`deviceName`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-devicename.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/deviceName")
|
||||||
|
|
||||||
### deviceName Type
|
### deviceName Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/RegisterChildDeviceRequest
|
|||||||
|
|
||||||
`clientLevel`
|
`clientLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-clientlevel.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/clientLevel")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-properties-clientlevel.md "https://timelimit.io/RegisterChildDeviceRequest#/properties/clientLevel")
|
||||||
|
|
||||||
### clientLevel Type
|
### clientLevel Type
|
||||||
|
|
||||||
@@ -115,13 +115,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`model`
|
`model`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model")
|
* defined in: [RegisterChildDeviceRequest](registerchilddevicerequest-definitions-newdeviceinfo-properties-model.md "https://timelimit.io/RegisterChildDeviceRequest#/definitions/NewDeviceInfo/properties/model")
|
||||||
|
|
||||||
#### model Type
|
#### model Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/RemoveDeviceRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceauthtoken.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceAuthToken")
|
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceauthtoken.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/RemoveDeviceRequest
|
|||||||
|
|
||||||
`parentUserId`
|
`parentUserId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentuserid.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentUserId")
|
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentuserid.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentUserId")
|
||||||
|
|
||||||
### parentUserId Type
|
### parentUserId Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/RemoveDeviceRequest
|
|||||||
|
|
||||||
`parentPasswordSecondHash`
|
`parentPasswordSecondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentPasswordSecondHash")
|
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RemoveDeviceRequest#/properties/parentPasswordSecondHash")
|
||||||
|
|
||||||
### parentPasswordSecondHash Type
|
### parentPasswordSecondHash Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/RemoveDeviceRequest
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceid.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceId")
|
* defined in: [RemoveDeviceRequest](removedevicerequest-properties-deviceid.md "https://timelimit.io/RemoveDeviceRequest#/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/RequestIdentityTokenRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-deviceauthtoken.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/deviceAuthToken")
|
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-deviceauthtoken.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/RequestIdentityTokenRequest
|
|||||||
|
|
||||||
`parentUserId`
|
`parentUserId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-parentuserid.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/parentUserId")
|
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-parentuserid.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/parentUserId")
|
||||||
|
|
||||||
### parentUserId Type
|
### parentUserId Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/RequestIdentityTokenRequest
|
|||||||
|
|
||||||
`parentPasswordSecondHash`
|
`parentPasswordSecondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/parentPasswordSecondHash")
|
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-parentpasswordsecondhash.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/parentPasswordSecondHash")
|
||||||
|
|
||||||
### parentPasswordSecondHash Type
|
### parentPasswordSecondHash Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/RequestIdentityTokenRequest
|
|||||||
|
|
||||||
`purpose`
|
`purpose`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-purpose.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/purpose")
|
* defined in: [RequestIdentityTokenRequest](requestidentitytokenrequest-properties-purpose.md "https://timelimit.io/RequestIdentityTokenRequest#/properties/purpose")
|
||||||
|
|
||||||
### purpose Type
|
### purpose Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/RequestWithAuthToken
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [RequestWithAuthToken](requestwithauthtoken-properties-deviceauthtoken.md "https://timelimit.io/RequestWithAuthToken#/properties/deviceAuthToken")
|
* defined in: [RequestWithAuthToken](requestwithauthtoken-properties-deviceauthtoken.md "https://timelimit.io/RequestWithAuthToken#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SendMailLoginCodeRequest
|
|||||||
|
|
||||||
`mail`
|
`mail`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-mail.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/mail")
|
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-mail.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/mail")
|
||||||
|
|
||||||
### mail Type
|
### mail Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/SendMailLoginCodeRequest
|
|||||||
|
|
||||||
`locale`
|
`locale`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-locale.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/locale")
|
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-locale.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/locale")
|
||||||
|
|
||||||
### locale Type
|
### locale Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/SendMailLoginCodeRequest
|
|||||||
|
|
||||||
`deviceAuthToken`
|
`deviceAuthToken`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-deviceauthtoken.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/deviceAuthToken")
|
* defined in: [SendMailLoginCodeRequest](sendmaillogincoderequest-properties-deviceauthtoken.md "https://timelimit.io/SendMailLoginCodeRequest#/properties/deviceAuthToken")
|
||||||
|
|
||||||
### deviceAuthToken Type
|
### deviceAuthToken Type
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# PingEvent Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/PingEvent
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## PingEvent Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-pingevent.md))
|
||||||
|
|
||||||
|
## PingEvent Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
+4
-4
@@ -26,13 +26,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisabl
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serialiezdtrieddisablingdeviceadminaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerialiezdTriedDisablingDeviceAdminAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalle
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalle
|
|||||||
|
|
||||||
`apps`
|
`apps`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md))
|
* Type: `object[]` ([SerializedInstalledApp](serializedapplogicaction-definitions-serializedinstalledapp.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddinstalledappsaction-properties-apps.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddInstalledAppsAction/properties/apps")
|
||||||
|
|
||||||
### apps Type
|
### apps Type
|
||||||
|
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -56,13 +56,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -74,13 +74,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`day`
|
`day`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-day.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/day")
|
||||||
|
|
||||||
### day Type
|
### day Type
|
||||||
|
|
||||||
@@ -92,13 +92,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`timeToAdd`
|
`timeToAdd`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-timetoadd.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/timeToAdd")
|
||||||
|
|
||||||
### timeToAdd Type
|
### timeToAdd Type
|
||||||
|
|
||||||
@@ -110,13 +110,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`extraTimeToSubtract`
|
`extraTimeToSubtract`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeaction-properties-extratimetosubtract.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeAction/properties/extraTimeToSubtract")
|
||||||
|
|
||||||
### extraTimeToSubtract Type
|
### extraTimeToSubtract Type
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -14,9 +14,9 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
||||||
|
|
||||||
## items Constraints
|
## items Constraints
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -14,6 +14,6 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
||||||
|
|||||||
+4
-4
@@ -14,13 +14,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
||||||
|
|
||||||
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
||||||
|
|
||||||
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
||||||
|
|
||||||
## items Constraints
|
## items Constraints
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -14,10 +14,10 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
||||||
|
|
||||||
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
||||||
|
|
||||||
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
||||||
|
|||||||
+32
-32
@@ -30,13 +30,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/categoryId")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -48,13 +48,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`tta`
|
`tta`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/tta")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-tta.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/tta")
|
||||||
|
|
||||||
### tta Type
|
### tta Type
|
||||||
|
|
||||||
@@ -66,13 +66,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`etts`
|
`etts`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/etts")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-etts.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/etts")
|
||||||
|
|
||||||
### etts Type
|
### etts Type
|
||||||
|
|
||||||
@@ -84,25 +84,25 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`as`
|
`as`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: an array where each item follows the corresponding schema in the following list:
|
* Type: an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/as")
|
||||||
|
|
||||||
### as Type
|
### as Type
|
||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-as-items-items-1.md "check type definition")
|
||||||
|
|
||||||
## sdl
|
## sdl
|
||||||
|
|
||||||
@@ -110,30 +110,30 @@ an array where each item follows the corresponding schema in the following list:
|
|||||||
|
|
||||||
`sdl`
|
`sdl`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: an array where each item follows the corresponding schema in the following list:
|
* Type: an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
||||||
|
|
||||||
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
||||||
|
|
||||||
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i/items/properties/sdl")
|
||||||
|
|
||||||
### sdl Type
|
### sdl Type
|
||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
1. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
2. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-1.md "check type definition")
|
||||||
|
|
||||||
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
3. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-2.md "check type definition")
|
||||||
|
|
||||||
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
4. [Untitled number in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items-properties-sdl-items-items-3.md "check type definition")
|
||||||
|
|||||||
+16
-16
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`d`
|
`d`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/d")
|
||||||
|
|
||||||
### d Type
|
### d Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`i`
|
`i`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md))
|
* Type: `object[]` ([Details](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i-items.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-i.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/i")
|
||||||
|
|
||||||
### i Type
|
### i Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTime
|
|||||||
|
|
||||||
`t`
|
`t`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/t")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedaddusedtimeactionversion2-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAddUsedTimeActionVersion2/properties/t")
|
||||||
|
|
||||||
### t Type
|
### t Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivity
|
|||||||
|
|
||||||
`p`
|
`p`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-p.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/p")
|
||||||
|
|
||||||
### p Type
|
### p Type
|
||||||
|
|
||||||
@@ -46,13 +46,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivity
|
|||||||
|
|
||||||
`c`
|
`c`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-c.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/c")
|
||||||
|
|
||||||
### c Type
|
### c Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivity
|
|||||||
|
|
||||||
`t`
|
`t`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedappactivityitem-properties-t.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedAppActivityItem/properties/t")
|
||||||
|
|
||||||
### t Type
|
### t Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRe
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedfinishkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedfinishkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRe
|
|||||||
|
|
||||||
`dsn`
|
`dsn`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedfinishkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction/properties/dsn")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedfinishkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedFinishKeyRequestAction/properties/dsn")
|
||||||
|
|
||||||
### dsn Type
|
### dsn Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedForceSyncAc
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedforcesyncaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedForceSyncAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedforcesyncaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedForceSyncAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledAp
|
|||||||
|
|
||||||
`packageName`
|
`packageName`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-packagename.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/packageName")
|
||||||
|
|
||||||
### packageName Type
|
### packageName Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledAp
|
|||||||
|
|
||||||
`title`
|
`title`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-title.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/title")
|
||||||
|
|
||||||
### title Type
|
### title Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledAp
|
|||||||
|
|
||||||
`isLaunchable`
|
`isLaunchable`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-islaunchable.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/isLaunchable")
|
||||||
|
|
||||||
### isLaunchable Type
|
### isLaunchable Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledAp
|
|||||||
|
|
||||||
`recommendation`
|
`recommendation`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string` ([AppRecommendation](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md))
|
* Type: `string` ([AppRecommendation](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedinstalledapp-properties-apprecommendation.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedInstalledApp/properties/recommendation")
|
||||||
|
|
||||||
### recommendation Type
|
### recommendation Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPen
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPen
|
|||||||
|
|
||||||
`taskId`
|
`taskId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction-properties-taskid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction/properties/taskId")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedmarktaskpendingaction-properties-taskid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedMarkTaskPendingAction/properties/taskId")
|
||||||
|
|
||||||
### taskId Type
|
### taskId Type
|
||||||
|
|
||||||
|
|||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+25
@@ -0,0 +1,25 @@
|
|||||||
|
# PingEvent Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## event Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
## event Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
# Untitled string in SerializedAppLogicAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"PING"` | |
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
# SerializedPingAction Schema
|
||||||
|
|
||||||
|
```txt
|
||||||
|
https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
|
||||||
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------- |
|
||||||
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedAppLogicAction.schema.json\*](SerializedAppLogicAction.schema.json "open original schema") |
|
||||||
|
|
||||||
|
## SerializedPingAction Type
|
||||||
|
|
||||||
|
`object` ([SerializedPingAction](serializedapplogicaction-definitions-serializedpingaction.md))
|
||||||
|
|
||||||
|
# SerializedPingAction Properties
|
||||||
|
|
||||||
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
|
| :-------------------- | :------- | :------- | :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| [type](#type) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type") |
|
||||||
|
| [deviceId](#deviceid) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId") |
|
||||||
|
| [event](#event) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event") |
|
||||||
|
| [token](#token) | `string` | Required | cannot be null | [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token") |
|
||||||
|
|
||||||
|
## type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`type`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/type")
|
||||||
|
|
||||||
|
### type Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
### type Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :------- | :---------- |
|
||||||
|
| `"PING"` | |
|
||||||
|
|
||||||
|
## deviceId
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`deviceId`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/deviceId")
|
||||||
|
|
||||||
|
### deviceId Type
|
||||||
|
|
||||||
|
`string`
|
||||||
|
|
||||||
|
## event
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`event`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/event")
|
||||||
|
|
||||||
|
### event Type
|
||||||
|
|
||||||
|
`string` ([PingEvent](serializedapplogicaction-definitions-serializedpingaction-properties-pingevent.md))
|
||||||
|
|
||||||
|
### event Constraints
|
||||||
|
|
||||||
|
**enum**: the value of this property must be equal to one of the following values:
|
||||||
|
|
||||||
|
| Value | Explanation |
|
||||||
|
| :-------- | :---------- |
|
||||||
|
| `"clear"` | |
|
||||||
|
| `"ping"` | |
|
||||||
|
| `"pong"` | |
|
||||||
|
|
||||||
|
## token
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`token`
|
||||||
|
|
||||||
|
* is required
|
||||||
|
|
||||||
|
* Type: `string`
|
||||||
|
|
||||||
|
* cannot be null
|
||||||
|
|
||||||
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedpingaction-properties-token.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedPingAction/properties/token")
|
||||||
|
|
||||||
|
### token Type
|
||||||
|
|
||||||
|
`string`
|
||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInsta
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInsta
|
|||||||
|
|
||||||
`packageNames`
|
`packageNames`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string[]`
|
* Type: `string[]`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedremoveinstalledappsaction-properties-packagenames.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedRemoveInstalledAppsAction/properties/packageNames")
|
||||||
|
|
||||||
### packageNames Type
|
### packageNames Type
|
||||||
|
|
||||||
|
|||||||
+20
-20
@@ -30,13 +30,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyR
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -56,13 +56,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyR
|
|||||||
|
|
||||||
`rsn`
|
`rsn`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-rsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/rsn")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-rsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/rsn")
|
||||||
|
|
||||||
### rsn Type
|
### rsn Type
|
||||||
|
|
||||||
@@ -74,13 +74,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyR
|
|||||||
|
|
||||||
`tempKey`
|
`tempKey`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/tempKey")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/tempKey")
|
||||||
|
|
||||||
### tempKey Type
|
### tempKey Type
|
||||||
|
|
||||||
@@ -92,13 +92,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyR
|
|||||||
|
|
||||||
`encryptedKey`
|
`encryptedKey`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-encryptedkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/encryptedKey")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-encryptedkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/encryptedKey")
|
||||||
|
|
||||||
### encryptedKey Type
|
### encryptedKey Type
|
||||||
|
|
||||||
@@ -110,13 +110,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyR
|
|||||||
|
|
||||||
`signature`
|
`signature`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-signature.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/signature")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedreplytokeyrequestaction-properties-signature.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedReplyToKeyRequestAction/properties/signature")
|
||||||
|
|
||||||
### signature Type
|
### signature Type
|
||||||
|
|
||||||
|
|||||||
+28
-28
@@ -32,13 +32,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -58,13 +58,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`dsn`
|
`dsn`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dsn")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-dsn.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dsn")
|
||||||
|
|
||||||
### dsn Type
|
### dsn Type
|
||||||
|
|
||||||
@@ -76,13 +76,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/deviceId")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-deviceid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -94,13 +94,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/categoryId")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-categoryid.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -112,13 +112,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`dataType`
|
`dataType`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-datatype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dataType")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-datatype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/dataType")
|
||||||
|
|
||||||
### dataType Type
|
### dataType Type
|
||||||
|
|
||||||
@@ -130,13 +130,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`tempKey`
|
`tempKey`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/tempKey")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-tempkey.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/tempKey")
|
||||||
|
|
||||||
### tempKey Type
|
### tempKey Type
|
||||||
|
|
||||||
@@ -148,13 +148,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequ
|
|||||||
|
|
||||||
`signature`
|
`signature`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-signature.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/signature")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsendkeyrequestaction-properties-signature.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSendKeyRequestAction/properties/signature")
|
||||||
|
|
||||||
### signature Type
|
### signature Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDe
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedsignoutatdeviceaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedSignOutAtDeviceAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -14,9 +14,9 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppAc
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
||||||
|
|
||||||
## items Constraints
|
## items Constraints
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -14,6 +14,6 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppAc
|
|||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
||||||
|
|||||||
+16
-16
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppAc
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,25 +54,25 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppAc
|
|||||||
|
|
||||||
`removed`
|
`removed`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: an array where each item follows the corresponding schema in the following list:
|
* Type: an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/removed")
|
||||||
|
|
||||||
### removed Type
|
### removed Type
|
||||||
|
|
||||||
an array where each item follows the corresponding schema in the following list:
|
an array where each item follows the corresponding schema in the following list:
|
||||||
|
|
||||||
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
1. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-0.md "check type definition")
|
||||||
|
|
||||||
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
2. [Untitled string in SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-removed-items-items-1.md "check type definition")
|
||||||
|
|
||||||
## updatedOrAdded
|
## updatedOrAdded
|
||||||
|
|
||||||
@@ -80,13 +80,13 @@ an array where each item follows the corresponding schema in the following list:
|
|||||||
|
|
||||||
`updatedOrAdded`
|
`updatedOrAdded`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md))
|
* Type: `object[]` ([SerializedAppActivityItem](serializedapplogicaction-definitions-serializedappactivityitem.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateappactivitiesaction-properties-updatedoradded.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateAppActivitiesAction/properties/updatedOrAdded")
|
||||||
|
|
||||||
### updatedOrAdded Type
|
### updatedOrAdded Type
|
||||||
|
|
||||||
|
|||||||
+48
-48
@@ -37,13 +37,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -63,13 +63,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`protectionLevel`
|
`protectionLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-protectionlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/protectionLevel")
|
||||||
|
|
||||||
### protectionLevel Type
|
### protectionLevel Type
|
||||||
|
|
||||||
@@ -92,13 +92,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`usageStats`
|
`usageStats`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-usagestats.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/usageStats")
|
||||||
|
|
||||||
### usageStats Type
|
### usageStats Type
|
||||||
|
|
||||||
@@ -120,13 +120,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`notificationAccess`
|
`notificationAccess`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-notificationaccess.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/notificationAccess")
|
||||||
|
|
||||||
### notificationAccess Type
|
### notificationAccess Type
|
||||||
|
|
||||||
@@ -148,13 +148,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`overlayPermission`
|
`overlayPermission`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-overlaypermission.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/overlayPermission")
|
||||||
|
|
||||||
### overlayPermission Type
|
### overlayPermission Type
|
||||||
|
|
||||||
@@ -176,13 +176,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`accessibilityServiceEnabled`
|
`accessibilityServiceEnabled`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-accessibilityserviceenabled.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/accessibilityServiceEnabled")
|
||||||
|
|
||||||
### accessibilityServiceEnabled Type
|
### accessibilityServiceEnabled Type
|
||||||
|
|
||||||
@@ -194,13 +194,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`appVersion`
|
`appVersion`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-appversion.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/appVersion")
|
||||||
|
|
||||||
### appVersion Type
|
### appVersion Type
|
||||||
|
|
||||||
@@ -212,13 +212,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`didReboot`
|
`didReboot`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-didreboot.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/didReboot")
|
||||||
|
|
||||||
### didReboot Type
|
### didReboot Type
|
||||||
|
|
||||||
@@ -230,13 +230,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`isQOrLaterNow`
|
`isQOrLaterNow`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-isqorlaternow.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/isQOrLaterNow")
|
||||||
|
|
||||||
### isQOrLaterNow Type
|
### isQOrLaterNow Type
|
||||||
|
|
||||||
@@ -248,13 +248,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`addedManipulationFlags`
|
`addedManipulationFlags`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-addedmanipulationflags.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/addedManipulationFlags")
|
||||||
|
|
||||||
### addedManipulationFlags Type
|
### addedManipulationFlags Type
|
||||||
|
|
||||||
@@ -266,13 +266,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`platformType`
|
`platformType`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformtype.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformType")
|
||||||
|
|
||||||
### platformType Type
|
### platformType Type
|
||||||
|
|
||||||
@@ -284,13 +284,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDevic
|
|||||||
|
|
||||||
`platformLevel`
|
`platformLevel`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdatedevicestatusaction-properties-platformlevel.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateDeviceStatusAction/properties/platformLevel")
|
||||||
|
|
||||||
### platformLevel Type
|
### platformLevel Type
|
||||||
|
|
||||||
|
|||||||
+16
-16
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInsta
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInsta
|
|||||||
|
|
||||||
`b`
|
`b`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-b.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/b")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-b.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/b")
|
||||||
|
|
||||||
### b Type
|
### b Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInsta
|
|||||||
|
|
||||||
`d`
|
`d`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/d")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-d.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/d")
|
||||||
|
|
||||||
### d Type
|
### d Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInsta
|
|||||||
|
|
||||||
`w`
|
`w`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-w.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/w")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializedupdateinstalledappsaction-properties-w.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUpdateInstalledAppsAction/properties/w")
|
||||||
|
|
||||||
### w Type
|
### w Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevic
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/type")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-type.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevic
|
|||||||
|
|
||||||
`key`
|
`key`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-key.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/key")
|
* defined in: [SerializedAppLogicAction](serializedapplogicaction-definitions-serializeduploaddevicepublickeyaction-properties-key.md "https://timelimit.io/SerializedAppLogicAction#/definitions/SerializedUploadDevicePublicKeyAction/properties/key")
|
||||||
|
|
||||||
### key Type
|
### key Type
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPasswor
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/hash")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/hash")
|
||||||
|
|
||||||
### hash Type
|
### hash Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPasswor
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
||||||
|
|
||||||
### secondHash Type
|
### secondHash Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPasswor
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
### secondSalt Type
|
### secondSalt Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPasswor
|
|||||||
|
|
||||||
`encrypted`
|
`encrypted`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
||||||
|
|
||||||
### encrypted Type
|
### encrypted Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePas
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePas
|
|||||||
|
|
||||||
`password`
|
`password`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([EncryptableParentPassword](serializedchildaction-definitions-encryptableparentpassword.md))
|
* Type: `object` ([EncryptableParentPassword](serializedchildaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password")
|
||||||
|
|
||||||
### password Type
|
### password Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAct
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ merged type ([SerializedChildAction](serializedchildaction.md))
|
|||||||
|
|
||||||
any of
|
any of
|
||||||
|
|
||||||
* [SerializedChildChangePasswordAction](serializedchildaction-definitions-serializedchildchangepasswordaction.md "check type definition")
|
* [SerializedChildChangePasswordAction](serializedchildaction-definitions-serializedchildchangepasswordaction.md "check type definition")
|
||||||
|
|
||||||
* [SerializedChildSignInAction](serializedchildaction-definitions-serializedchildsigninaction.md "check type definition")
|
* [SerializedChildSignInAction](serializedchildaction-definitions-serializedchildsigninaction.md "check type definition")
|
||||||
|
|
||||||
# SerializedChildAction Definitions
|
# SerializedChildAction Definitions
|
||||||
|
|
||||||
@@ -41,13 +41,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildchangepasswordaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/type")
|
||||||
|
|
||||||
#### type Type
|
#### type Type
|
||||||
|
|
||||||
@@ -67,13 +67,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`password`
|
`password`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([EncryptableParentPassword](serializedchildaction-definitions-encryptableparentpassword.md))
|
* Type: `object` ([EncryptableParentPassword](serializedchildaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildChangePasswordAction/properties/password")
|
||||||
|
|
||||||
#### password Type
|
#### password Type
|
||||||
|
|
||||||
@@ -100,13 +100,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/hash")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/hash")
|
||||||
|
|
||||||
#### hash Type
|
#### hash Type
|
||||||
|
|
||||||
@@ -118,13 +118,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
||||||
|
|
||||||
#### secondHash Type
|
#### secondHash Type
|
||||||
|
|
||||||
@@ -136,13 +136,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
#### secondSalt Type
|
#### secondSalt Type
|
||||||
|
|
||||||
@@ -154,13 +154,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`encrypted`
|
`encrypted`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedChildAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
||||||
|
|
||||||
#### encrypted Type
|
#### encrypted Type
|
||||||
|
|
||||||
@@ -184,13 +184,13 @@ Reference this group by using
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type")
|
* defined in: [SerializedChildAction](serializedchildaction-definitions-serializedchildsigninaction-properties-type.md "https://timelimit.io/SerializedChildAction#/definitions/SerializedChildSignInAction/properties/type")
|
||||||
|
|
||||||
#### type Type
|
#### type Type
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# EncryptableParentPassword Schema
|
# EncryptableParentPassword Schema
|
||||||
|
|
||||||
```txt
|
```txt
|
||||||
https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword
|
https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
@@ -10,11 +10,11 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------------------------------------ |
|
||||||
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
| Can be instantiated | No | Unknown status | No | Forbidden | Forbidden | none | [SerializedParentAction.schema.json\*](SerializedParentAction.schema.json "open original schema") |
|
||||||
|
|
||||||
## newPassword Type
|
## EncryptableParentPassword Type
|
||||||
|
|
||||||
`object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
`object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
# newPassword Properties
|
# EncryptableParentPassword Properties
|
||||||
|
|
||||||
| Property | Type | Required | Nullable | Defined by |
|
| Property | Type | Required | Nullable | Defined by |
|
||||||
| :------------------------ | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| :------------------------ | :-------- | :------- | :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/hash")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/hash")
|
||||||
|
|
||||||
### hash Type
|
### hash Type
|
||||||
|
|
||||||
@@ -47,13 +47,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`secondHash`
|
`secondHash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-secondhash.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/secondHash")
|
||||||
|
|
||||||
### secondHash Type
|
### secondHash Type
|
||||||
|
|
||||||
@@ -65,13 +65,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/secondSalt")
|
||||||
|
|
||||||
### secondSalt Type
|
### secondSalt Type
|
||||||
|
|
||||||
@@ -83,13 +83,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`encrypted`
|
`encrypted`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword-properties-encrypted.md "https://timelimit.io/SerializedParentAction#/definitions/EncryptableParentPassword/properties/encrypted")
|
||||||
|
|
||||||
### encrypted Type
|
### encrypted Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetwor
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetwor
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetwor
|
|||||||
|
|
||||||
`mode`
|
`mode`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serialiizedupdatenetworktimeverificationaction-properties-mode.md "https://timelimit.io/SerializedParentAction#/definitions/SerialiizedUpdateNetworkTimeVerificationAction/properties/mode")
|
||||||
|
|
||||||
### mode Type
|
### mode Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAp
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAp
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAp
|
|||||||
|
|
||||||
`packageNames`
|
`packageNames`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string[]`
|
* Type: `string[]`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryAppsAction/properties/packageNames")
|
||||||
|
|
||||||
### packageNames Type
|
### packageNames Type
|
||||||
|
|
||||||
|
|||||||
+16
-16
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNe
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNe
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNe
|
|||||||
|
|
||||||
`itemId`
|
`itemId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-itemid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/itemId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-itemid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/itemId")
|
||||||
|
|
||||||
### itemId Type
|
### itemId Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNe
|
|||||||
|
|
||||||
`hashedNetworkId`
|
`hashedNetworkId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-hashednetworkid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/hashedNetworkId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddcategorynetworkidaction-properties-hashednetworkid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddCategoryNetworkIdAction/properties/hashedNetworkId")
|
||||||
|
|
||||||
### hashedNetworkId Type
|
### hashedNetworkId Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fK
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fK
|
|||||||
|
|
||||||
`keyHandle`
|
`keyHandle`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-keyhandle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/keyHandle")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-keyhandle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/keyHandle")
|
||||||
|
|
||||||
### keyHandle Type
|
### keyHandle Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fK
|
|||||||
|
|
||||||
`publicKey`
|
`publicKey`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-publickey.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/publicKey")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedaddparentu2fkeyaction-properties-publickey.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddParentU2fKeyAction/properties/publicKey")
|
||||||
|
|
||||||
### publicKey Type
|
### publicKey Type
|
||||||
|
|
||||||
|
|||||||
@@ -31,13 +31,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -57,13 +57,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`name`
|
`name`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-name.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/name")
|
||||||
|
|
||||||
### name Type
|
### name Type
|
||||||
|
|
||||||
@@ -75,13 +75,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`userType`
|
`userType`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-usertype.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userType")
|
||||||
|
|
||||||
### userType Type
|
### userType Type
|
||||||
|
|
||||||
@@ -102,13 +102,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/userId")
|
||||||
|
|
||||||
### userId Type
|
### userId Type
|
||||||
|
|
||||||
@@ -120,13 +120,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`password`
|
`password`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
* Type: `object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/password")
|
||||||
|
|
||||||
### password Type
|
### password Type
|
||||||
|
|
||||||
@@ -138,13 +138,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction
|
|||||||
|
|
||||||
`timeZone`
|
`timeZone`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedadduseraction-properties-timezone.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedAddUserAction/properties/timeZone")
|
||||||
|
|
||||||
### timeZone Type
|
### timeZone Type
|
||||||
|
|
||||||
|
|||||||
+24
-24
@@ -31,13 +31,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -57,13 +57,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/userId")
|
||||||
|
|
||||||
### userId Type
|
### userId Type
|
||||||
|
|
||||||
@@ -75,13 +75,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`hash`
|
`hash`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-hash.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/hash")
|
||||||
|
|
||||||
### hash Type
|
### hash Type
|
||||||
|
|
||||||
@@ -93,13 +93,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`secondSalt`
|
`secondSalt`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondsalt.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondSalt")
|
||||||
|
|
||||||
### secondSalt Type
|
### secondSalt Type
|
||||||
|
|
||||||
@@ -111,13 +111,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`secondHashEncrypted`
|
`secondHashEncrypted`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-secondhashencrypted.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/secondHashEncrypted")
|
||||||
|
|
||||||
### secondHashEncrypted Type
|
### secondHashEncrypted Type
|
||||||
|
|
||||||
@@ -129,13 +129,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentP
|
|||||||
|
|
||||||
`integrity`
|
`integrity`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedchangeparentpasswordaction-properties-integrity.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedChangeParentPasswordAction/properties/integrity")
|
||||||
|
|
||||||
### integrity Type
|
### integrity Type
|
||||||
|
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategor
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategor
|
|||||||
|
|
||||||
`childId`
|
`childId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/childId")
|
||||||
|
|
||||||
### childId Type
|
### childId Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategor
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategor
|
|||||||
|
|
||||||
`title`
|
`title`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatecategoryaction-properties-title.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateCategoryAction/properties/title")
|
||||||
|
|
||||||
### title Type
|
### title Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelim
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedcreatetimelimtruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelim
|
|||||||
|
|
||||||
`rule`
|
`rule`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md))
|
* Type: `object` ([SerializedTimeLimitRule](serializedparentaction-definitions-serializedtimelimitrule.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedtimelimitrule.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedCreateTimelimtRuleAction/properties/rule")
|
||||||
|
|
||||||
### rule Type
|
### rule Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategor
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategor
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletecategoryaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteCategoryAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTa
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletechildtaskaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletechildtaskaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTa
|
|||||||
|
|
||||||
`taskId`
|
`taskId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletechildtaskaction-properties-taskid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction/properties/taskId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletechildtaskaction-properties-taskid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteChildTaskAction/properties/taskId")
|
||||||
|
|
||||||
### taskId Type
|
### taskId Type
|
||||||
|
|
||||||
|
|||||||
+8
-8
@@ -27,13 +27,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLim
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -53,13 +53,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLim
|
|||||||
|
|
||||||
`ruleId`
|
`ruleId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializeddeletetimelimitruleaction-properties-ruleid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedDeleteTimeLimitRuleAction/properties/ruleId")
|
||||||
|
|
||||||
### ruleId Type
|
### ruleId Type
|
||||||
|
|
||||||
|
|||||||
+52
-52
@@ -38,13 +38,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -64,13 +64,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -82,13 +82,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`admin`
|
`admin`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admin.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/admin")
|
||||||
|
|
||||||
### admin Type
|
### admin Type
|
||||||
|
|
||||||
@@ -100,13 +100,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`adminA`
|
`adminA`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-admina.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/adminA")
|
||||||
|
|
||||||
### adminA Type
|
### adminA Type
|
||||||
|
|
||||||
@@ -118,13 +118,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`downgrade`
|
`downgrade`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-downgrade.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/downgrade")
|
||||||
|
|
||||||
### downgrade Type
|
### downgrade Type
|
||||||
|
|
||||||
@@ -136,13 +136,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`notification`
|
`notification`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-notification.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/notification")
|
||||||
|
|
||||||
### notification Type
|
### notification Type
|
||||||
|
|
||||||
@@ -154,13 +154,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`usageStats`
|
`usageStats`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-usagestats.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/usageStats")
|
||||||
|
|
||||||
### usageStats Type
|
### usageStats Type
|
||||||
|
|
||||||
@@ -172,13 +172,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`hadManipulation`
|
`hadManipulation`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-hadmanipulation.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/hadManipulation")
|
||||||
|
|
||||||
### hadManipulation Type
|
### hadManipulation Type
|
||||||
|
|
||||||
@@ -190,13 +190,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`reboot`
|
`reboot`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-reboot.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/reboot")
|
||||||
|
|
||||||
### reboot Type
|
### reboot Type
|
||||||
|
|
||||||
@@ -208,13 +208,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`overlay`
|
`overlay`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-overlay.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/overlay")
|
||||||
|
|
||||||
### overlay Type
|
### overlay Type
|
||||||
|
|
||||||
@@ -226,13 +226,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`accessibilityService`
|
`accessibilityService`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-accessibilityservice.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/accessibilityService")
|
||||||
|
|
||||||
### accessibilityService Type
|
### accessibilityService Type
|
||||||
|
|
||||||
@@ -244,13 +244,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`ignoreHadManipulationFlags`
|
`ignoreHadManipulationFlags`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignorehadmanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreHadManipulationFlags")
|
||||||
|
|
||||||
### ignoreHadManipulationFlags Type
|
### ignoreHadManipulationFlags Type
|
||||||
|
|
||||||
@@ -262,13 +262,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipul
|
|||||||
|
|
||||||
`ignoreManipulationFlags`
|
`ignoreManipulationFlags`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignoremanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreManipulationFlags")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedignoremanipulationaction-properties-ignoremanipulationflags.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIgnoreManipulationAction/properties/ignoreManipulationFlags")
|
||||||
|
|
||||||
### ignoreManipulationFlags Type
|
### ignoreManipulationFlags Type
|
||||||
|
|
||||||
|
|||||||
+16
-16
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCate
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCate
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCate
|
|||||||
|
|
||||||
`addedExtraTime`
|
`addedExtraTime`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-addedextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/addedExtraTime")
|
||||||
|
|
||||||
### addedExtraTime Type
|
### addedExtraTime Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCate
|
|||||||
|
|
||||||
`day`
|
`day`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedincrementcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedIncrementCategoryExtraTimeAction/properties/day")
|
||||||
|
|
||||||
### day Type
|
### day Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategor
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategor
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategor
|
|||||||
|
|
||||||
`packageNames`
|
`packageNames`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string[]`
|
* Type: `string[]`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremovecategoryappsaction-properties-packagenames.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveCategoryAppsAction/properties/packageNames")
|
||||||
|
|
||||||
### packageNames Type
|
### packageNames Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU
|
|||||||
|
|
||||||
`keyHandle`
|
`keyHandle`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-keyhandle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/keyHandle")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-keyhandle.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/keyHandle")
|
||||||
|
|
||||||
### keyHandle Type
|
### keyHandle Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU
|
|||||||
|
|
||||||
`publicKey`
|
`publicKey`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-publickey.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/publicKey")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveparentu2fkeyaction-properties-publickey.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveParentU2fKeyAction/properties/publicKey")
|
||||||
|
|
||||||
### publicKey Type
|
### publicKey Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAct
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAct
|
|||||||
|
|
||||||
`userId`
|
`userId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-userid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/userId")
|
||||||
|
|
||||||
### userId Type
|
### userId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAct
|
|||||||
|
|
||||||
`authentication`
|
`authentication`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedremoveuseraction-properties-authentication.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRemoveUserAction/properties/authentication")
|
||||||
|
|
||||||
### authentication Type
|
### authentication Type
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAc
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAc
|
|||||||
|
|
||||||
`childId`
|
`childId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/childId")
|
||||||
|
|
||||||
### childId Type
|
### childId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAc
|
|||||||
|
|
||||||
`newName`
|
`newName`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedrenamechildaction-properties-newname.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedRenameChildAction/properties/newName")
|
||||||
|
|
||||||
### newName Type
|
### newName Type
|
||||||
|
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReportU2fLogi
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreportu2floginaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReportU2fLoginAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreportu2floginaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReportU2fLoginAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTa
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -56,13 +56,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTa
|
|||||||
|
|
||||||
`taskId`
|
`taskId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-taskid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/taskId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-taskid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/taskId")
|
||||||
|
|
||||||
### taskId Type
|
### taskId Type
|
||||||
|
|
||||||
@@ -74,13 +74,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTa
|
|||||||
|
|
||||||
`ok`
|
`ok`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-ok.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/ok")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-ok.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/ok")
|
||||||
|
|
||||||
### ok Type
|
### ok Type
|
||||||
|
|
||||||
@@ -92,13 +92,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTa
|
|||||||
|
|
||||||
`time`
|
`time`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/time")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-time.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/time")
|
||||||
|
|
||||||
### time Type
|
### time Type
|
||||||
|
|
||||||
@@ -110,13 +110,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTa
|
|||||||
|
|
||||||
`day`
|
`day`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/day")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedreviewchildtaskaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedReviewChildTaskAction/properties/day")
|
||||||
|
|
||||||
### day Type
|
### day Type
|
||||||
|
|
||||||
|
|||||||
+16
-16
@@ -29,13 +29,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryEx
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -55,13 +55,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryEx
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryEx
|
|||||||
|
|
||||||
`newExtraTime`
|
`newExtraTime`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-newextratime.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/newExtraTime")
|
||||||
|
|
||||||
### newExtraTime Type
|
### newExtraTime Type
|
||||||
|
|
||||||
@@ -91,13 +91,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryEx
|
|||||||
|
|
||||||
`day`
|
`day`
|
||||||
|
|
||||||
* is optional
|
* is optional
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryextratimeaction-properties-day.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryExtraTimeAction/properties/day")
|
||||||
|
|
||||||
### day Type
|
### day Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryFo
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryFo
|
|||||||
|
|
||||||
`childId`
|
`childId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/childId")
|
||||||
|
|
||||||
### childId Type
|
### childId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryFo
|
|||||||
|
|
||||||
`categoryId`
|
`categoryId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetcategoryforunassignedappsaction-properties-categoryid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetCategoryForUnassignedAppsAction/properties/categoryId")
|
||||||
|
|
||||||
### categoryId Type
|
### categoryId Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`childId`
|
`childId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetchildpasswordaction-properties-childid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/childId")
|
||||||
|
|
||||||
### childId Type
|
### childId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPassw
|
|||||||
|
|
||||||
`newPassword`
|
`newPassword`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
* Type: `object` ([EncryptableParentPassword](serializedparentaction-definitions-encryptableparentpassword.md))
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-encryptableparentpassword.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetChildPasswordAction/properties/newPassword")
|
||||||
|
|
||||||
### newPassword Type
|
### newPassword Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRe
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRe
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRe
|
|||||||
|
|
||||||
`enable`
|
`enable`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `boolean`
|
* Type: `boolean`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetconsiderrebootmanipulationaction-properties-enable.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetConsiderRebootManipulationAction/properties/enable")
|
||||||
|
|
||||||
### enable Type
|
### enable Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`defaultUserId`
|
`defaultUserId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultuseraction-properties-defaultuserid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserAction/properties/defaultUserId")
|
||||||
|
|
||||||
### defaultUserId Type
|
### defaultUserId Type
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -28,13 +28,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`type`
|
`type`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-type.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/type")
|
||||||
|
|
||||||
### type Type
|
### type Type
|
||||||
|
|
||||||
@@ -54,13 +54,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`deviceId`
|
`deviceId`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `string`
|
* Type: `string`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-deviceid.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/deviceId")
|
||||||
|
|
||||||
### deviceId Type
|
### deviceId Type
|
||||||
|
|
||||||
@@ -72,13 +72,13 @@ https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefa
|
|||||||
|
|
||||||
`timeout`
|
`timeout`
|
||||||
|
|
||||||
* is required
|
* is required
|
||||||
|
|
||||||
* Type: `number`
|
* Type: `number`
|
||||||
|
|
||||||
* cannot be null
|
* cannot be null
|
||||||
|
|
||||||
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout")
|
* defined in: [SerializedParentAction](serializedparentaction-definitions-serializedsetdevicedefaultusertimeoutaction-properties-timeout.md "https://timelimit.io/SerializedParentAction#/definitions/SerializedSetDeviceDefaultUserTimeoutAction/properties/timeout")
|
||||||
|
|
||||||
### timeout Type
|
### timeout Type
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user