ListVersionsOptions interface
Stay organized with collections
Save and categorize content based on your preferences.
Interface representing options for Remote Config list versions operation.
Signature:
export interface ListVersionsOptions
Properties
Property |
Type |
Description |
endTime |
Date | string |
Specifies the latest update time to include in the results. Any entries updated on or after this time are omitted. |
endVersionNumber |
string | number |
Specifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version. |
pageSize |
number |
The maximum number of items to return per page. |
pageToken |
string |
The nextPageToken value returned from a previous list versions request, if any. |
startTime |
Date | string |
Specifies the earliest update time to include in the results. Any entries updated before this time are omitted. |
ListVersionsOptions.endTime
Specifies the latest update time to include in the results. Any entries updated on or after this time are omitted.
Signature:
endTime?: Date | string;
ListVersionsOptions.endVersionNumber
Specifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version.
Signature:
endVersionNumber?: string | number;
ListVersionsOptions.pageSize
The maximum number of items to return per page.
Signature:
pageSize?: number;
ListVersionsOptions.pageToken
The nextPageToken
value returned from a previous list versions request, if any.
Signature:
pageToken?: string;
ListVersionsOptions.startTime
Specifies the earliest update time to include in the results. Any entries updated before this time are omitted.
Signature:
startTime?: Date | string;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-07-29 UTC.
[null,null,["Last updated 2022-07-29 UTC."],[],[],null,["# ListVersionsOptions interface\n\nInterface representing options for Remote Config list versions operation.\n\n**Signature:** \n\n export interface ListVersionsOptions \n\nProperties\n----------\n\n| Property | Type | Description |\n|---------------------------------------------------------------------------------------------------------------|------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| [endTime](./firebase-admin.remote-config.listversionsoptions.md#listversionsoptionsendtime) | Date \\| string | Specifies the latest update time to include in the results. Any entries updated on or after this time are omitted. |\n| [endVersionNumber](./firebase-admin.remote-config.listversionsoptions.md#listversionsoptionsendversionnumber) | string \\| number | Specifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version. |\n| [pageSize](./firebase-admin.remote-config.listversionsoptions.md#listversionsoptionspagesize) | number | The maximum number of items to return per page. |\n| [pageToken](./firebase-admin.remote-config.listversionsoptions.md#listversionsoptionspagetoken) | string | The `nextPageToken` value returned from a previous list versions request, if any. |\n| [startTime](./firebase-admin.remote-config.listversionsoptions.md#listversionsoptionsstarttime) | Date \\| string | Specifies the earliest update time to include in the results. Any entries updated before this time are omitted. |\n\nListVersionsOptions.endTime\n---------------------------\n\nSpecifies the latest update time to include in the results. Any entries updated on or after this time are omitted.\n\n**Signature:** \n\n endTime?: Date | string;\n\nListVersionsOptions.endVersionNumber\n------------------------------------\n\nSpecifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version.\n\n**Signature:** \n\n endVersionNumber?: string | number;\n\nListVersionsOptions.pageSize\n----------------------------\n\nThe maximum number of items to return per page.\n\n**Signature:** \n\n pageSize?: number;\n\nListVersionsOptions.pageToken\n-----------------------------\n\nThe `nextPageToken` value returned from a previous list versions request, if any.\n\n**Signature:** \n\n pageToken?: string;\n\nListVersionsOptions.startTime\n-----------------------------\n\nSpecifies the earliest update time to include in the results. Any entries updated before this time are omitted.\n\n**Signature:** \n\n startTime?: Date | string;"]]