v1.d.ts 96.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775
/// <reference types="node" />
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosPromise, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
import { Readable } from 'stream';
export declare namespace fitness_v1 {
    export interface Options extends GlobalOptions {
        version: 'v1';
    }
    interface StandardParameters {
        /**
         * Auth client or API Key for the request
         */
        auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient | BaseExternalAccountClient | GoogleAuth;
        /**
         * V1 error format.
         */
        '$.xgafv'?: string;
        /**
         * OAuth access token.
         */
        access_token?: string;
        /**
         * Data format for response.
         */
        alt?: string;
        /**
         * JSONP
         */
        callback?: string;
        /**
         * Selector specifying which fields to include in a partial response.
         */
        fields?: string;
        /**
         * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
         */
        key?: string;
        /**
         * OAuth 2.0 token for the current user.
         */
        oauth_token?: string;
        /**
         * Returns response with indentations and line breaks.
         */
        prettyPrint?: boolean;
        /**
         * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
         */
        quotaUser?: string;
        /**
         * Legacy upload protocol for media (e.g. "media", "multipart").
         */
        uploadType?: string;
        /**
         * Upload protocol for media (e.g. "raw", "multipart").
         */
        upload_protocol?: string;
    }
    /**
     * Fitness API
     *
     * The Fitness API for managing users&#39; fitness tracking data.
     *
     * @example
     * ```js
     * const {google} = require('googleapis');
     * const fitness = google.fitness('v1');
     * ```
     */
    export class Fitness {
        context: APIRequestContext;
        users: Resource$Users;
        constructor(options: GlobalOptions, google?: GoogleConfigurable);
    }
    export interface Schema$AggregateBucket {
        /**
         * Available for Bucket.Type.ACTIVITY_TYPE, Bucket.Type.ACTIVITY_SEGMENT
         */
        activity?: number | null;
        /**
         * There will be one dataset per AggregateBy in the request.
         */
        dataset?: Schema$Dataset[];
        /**
         * The end time for the aggregated data, in milliseconds since epoch, inclusive.
         */
        endTimeMillis?: string | null;
        /**
         * Available for Bucket.Type.SESSION
         */
        session?: Schema$Session;
        /**
         * The start time for the aggregated data, in milliseconds since epoch, inclusive.
         */
        startTimeMillis?: string | null;
        /**
         * The type of a bucket signifies how the data aggregation is performed in the bucket.
         */
        type?: string | null;
    }
    /**
     * The specification of which data to aggregate.
     */
    export interface Schema$AggregateBy {
        /**
         * A data source ID to aggregate. Only data from the specified data source ID will be included in the aggregation. If specified, this data source must exist; the OAuth scopes in the supplied credentials must grant read access to this data type. The dataset in the response will have the same data source ID. Note: Data can be aggregated by either the dataTypeName or the dataSourceId, not both.
         */
        dataSourceId?: string | null;
        /**
         * The data type to aggregate. All data sources providing this data type will contribute data to the aggregation. The response will contain a single dataset for this data type name. The dataset will have a data source ID of derived::com.google.android.gms:aggregated. If the user has no data for this data type, an empty data set will be returned. Note: Data can be aggregated by either the dataTypeName or the dataSourceId, not both.
         */
        dataTypeName?: string | null;
    }
    /**
     * Next id: 10
     */
    export interface Schema$AggregateRequest {
        /**
         * The specification of data to be aggregated. At least one aggregateBy spec must be provided. All data that is specified will be aggregated using the same bucketing criteria. There will be one dataset in the response for every aggregateBy spec.
         */
        aggregateBy?: Schema$AggregateBy[];
        /**
         * Specifies that data be aggregated each activity segment recorded for a user. Similar to bucketByActivitySegment, but bucketing is done for each activity segment rather than all segments of the same type. Mutually exclusive of other bucketing specifications.
         */
        bucketByActivitySegment?: Schema$BucketByActivity;
        /**
         * Specifies that data be aggregated by the type of activity being performed when the data was recorded. All data that was recorded during a certain activity type (.for the given time range) will be aggregated into the same bucket. Data that was recorded while the user was not active will not be included in the response. Mutually exclusive of other bucketing specifications.
         */
        bucketByActivityType?: Schema$BucketByActivity;
        /**
         * Specifies that data be aggregated by user sessions. Data that does not fall within the time range of a session will not be included in the response. Mutually exclusive of other bucketing specifications.
         */
        bucketBySession?: Schema$BucketBySession;
        /**
         * Specifies that data be aggregated by a single time interval. Mutually exclusive of other bucketing specifications.
         */
        bucketByTime?: Schema$BucketByTime;
        /**
         * The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.
         */
        endTimeMillis?: string | null;
        /**
         * DO NOT POPULATE THIS FIELD. It is ignored.
         */
        filteredDataQualityStandard?: string[] | null;
        /**
         * The start of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.
         */
        startTimeMillis?: string | null;
    }
    export interface Schema$AggregateResponse {
        /**
         * A list of buckets containing the aggregated data.
         */
        bucket?: Schema$AggregateBucket[];
    }
    export interface Schema$Application {
        /**
         * An optional URI that can be used to link back to the application.
         */
        detailsUrl?: string | null;
        /**
         * The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.
         */
        name?: string | null;
        /**
         * Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
         */
        packageName?: string | null;
        /**
         * Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
         */
        version?: string | null;
    }
    export interface Schema$BucketByActivity {
        /**
         * The default activity stream will be used if a specific activityDataSourceId is not specified.
         */
        activityDataSourceId?: string | null;
        /**
         * Specifies that only activity segments of duration longer than minDurationMillis are considered and used as a container for aggregated data.
         */
        minDurationMillis?: string | null;
    }
    export interface Schema$BucketBySession {
        /**
         * Specifies that only sessions of duration longer than minDurationMillis are considered and used as a container for aggregated data.
         */
        minDurationMillis?: string | null;
    }
    export interface Schema$BucketByTime {
        /**
         * Specifies that result buckets aggregate data by exactly durationMillis time frames. Time frames that contain no data will be included in the response with an empty dataset.
         */
        durationMillis?: string | null;
        period?: Schema$BucketByTimePeriod;
    }
    export interface Schema$BucketByTimePeriod {
        /**
         * org.joda.timezone.DateTimeZone
         */
        timeZoneId?: string | null;
        type?: string | null;
        value?: number | null;
    }
    /**
     * Represents a single data point, generated by a particular data source. A data point holds a value for each field, an end timestamp and an optional start time. The exact semantics of each of these attributes are specified in the documentation for the particular data type. A data point can represent an instantaneous measurement, reading or input observation, as well as averages or aggregates over a time interval. Check the data type documentation to determine which is the case for a particular data type. Data points always contain one value for each field of the data type.
     */
    export interface Schema$DataPoint {
        /**
         * DO NOT USE THIS FIELD. It is ignored, and not stored.
         */
        computationTimeMillis?: string | null;
        /**
         * The data type defining the format of the values in this data point.
         */
        dataTypeName?: string | null;
        /**
         * The end time of the interval represented by this data point, in nanoseconds since epoch.
         */
        endTimeNanos?: string | null;
        /**
         * Indicates the last time this data point was modified. Useful only in contexts where we are listing the data changes, rather than representing the current state of the data.
         */
        modifiedTimeMillis?: string | null;
        /**
         * If the data point is contained in a dataset for a derived data source, this field will be populated with the data source stream ID that created the data point originally. WARNING: do not rely on this field for anything other than debugging. The value of this field, if it is set at all, is an implementation detail and is not guaranteed to remain consistent.
         */
        originDataSourceId?: string | null;
        /**
         * The raw timestamp from the original SensorEvent.
         */
        rawTimestampNanos?: string | null;
        /**
         * The start time of the interval represented by this data point, in nanoseconds since epoch.
         */
        startTimeNanos?: string | null;
        /**
         * Values of each data type field for the data point. It is expected that each value corresponding to a data type field will occur in the same order that the field is listed with in the data type specified in a data source. Only one of integer and floating point fields will be populated, depending on the format enum value within data source's type field.
         */
        value?: Schema$Value[];
    }
    /**
     * A dataset represents a projection container for data points. They do not carry any info of their own. Datasets represent a set of data points from a particular data source. A data point can be found in more than one dataset.
     */
    export interface Schema$Dataset {
        /**
         * The data stream ID of the data source that created the points in this dataset.
         */
        dataSourceId?: string | null;
        /**
         * The largest end time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the second part of the dataset identifier.
         */
        maxEndTimeNs?: string | null;
        /**
         * The smallest start time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the first part of the dataset identifier.
         */
        minStartTimeNs?: string | null;
        /**
         * This token will be set when a dataset is received in response to a GET request and the dataset is too large to be included in a single response. Provide this value in a subsequent GET request to return the next page of data points within this dataset.
         */
        nextPageToken?: string | null;
        /**
         * A partial list of data points contained in the dataset, ordered by endTimeNanos. This list is considered complete when retrieving a small dataset and partial when patching a dataset or retrieving a dataset that is too large to include in a single response.
         */
        point?: Schema$DataPoint[];
    }
    /**
     * Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
     */
    export interface Schema$DataSource {
        /**
         * Information about an application which feeds sensor data into the platform.
         */
        application?: Schema$Application;
        /**
         * DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
         */
        dataQualityStandard?: string[] | null;
        /**
         * A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device's manufacturer, model, and serial number (UID). - The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source's type. - The data source's stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn't used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they're not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
         */
        dataStreamId?: string | null;
        /**
         * The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
         */
        dataStreamName?: string | null;
        /**
         * The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
         */
        dataType?: Schema$DataType;
        /**
         * Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
         */
        device?: Schema$Device;
        /**
         * An end-user visible name for this data source.
         */
        name?: string | null;
        /**
         * A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
         */
        type?: string | null;
    }
    export interface Schema$DataType {
        /**
         * A field represents one dimension of a data type.
         */
        field?: Schema$DataTypeField[];
        /**
         * Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
         */
        name?: string | null;
    }
    /**
     * In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
     */
    export interface Schema$DataTypeField {
        /**
         * The different supported formats for each field in a data type.
         */
        format?: string | null;
        /**
         * Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
         */
        name?: string | null;
        optional?: boolean | null;
    }
    /**
     * Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version.
     */
    export interface Schema$Device {
        /**
         * Manufacturer of the product/hardware.
         */
        manufacturer?: string | null;
        /**
         * End-user visible model name for the device.
         */
        model?: string | null;
        /**
         * A constant representing the type of the device.
         */
        type?: string | null;
        /**
         * The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
         */
        uid?: string | null;
        /**
         * Version string for the device hardware/software.
         */
        version?: string | null;
    }
    export interface Schema$ListDataPointChangesResponse {
        /**
         * The data stream ID of the data source with data point changes.
         */
        dataSourceId?: string | null;
        /**
         * Deleted data points for the user. Note, for modifications this should be parsed before handling insertions.
         */
        deletedDataPoint?: Schema$DataPoint[];
        /**
         * Inserted data points for the user.
         */
        insertedDataPoint?: Schema$DataPoint[];
        /**
         * The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
         */
        nextPageToken?: string | null;
    }
    export interface Schema$ListDataSourcesResponse {
        /**
         * A previously created data source.
         */
        dataSource?: Schema$DataSource[];
    }
    export interface Schema$ListSessionsResponse {
        /**
         * If includeDeleted is set to true in the request, and startTime and endTime are omitted, this will include sessions which were deleted since the last sync.
         */
        deletedSession?: Schema$Session[];
        /**
         * Flag to indicate server has more data to transfer. DO NOT USE THIS FIELD. It is never populated in responses from the server.
         */
        hasMoreData?: boolean | null;
        /**
         * The sync token which is used to sync further changes. This will only be provided if both startTime and endTime are omitted from the request.
         */
        nextPageToken?: string | null;
        /**
         * Sessions with an end time that is between startTime and endTime of the request.
         */
        session?: Schema$Session[];
    }
    /**
     * Holder object for the value of an entry in a map field of a data point. A map value supports a subset of the formats that the regular Value supports.
     */
    export interface Schema$MapValue {
        /**
         * Floating point value.
         */
        fpVal?: number | null;
    }
    /**
     * Sessions contain metadata, such as a user-friendly name and time interval information.
     */
    export interface Schema$Session {
        /**
         * Session active time. While start_time_millis and end_time_millis define the full session time, the active time can be shorter and specified by active_time_millis. If the inactive time during the session is known, it should also be inserted via a com.google.activity.segment data point with a STILL activity value
         */
        activeTimeMillis?: string | null;
        /**
         * The type of activity this session represents.
         */
        activityType?: number | null;
        /**
         * The application that created the session.
         */
        application?: Schema$Application;
        /**
         * A description for this session.
         */
        description?: string | null;
        /**
         * An end time, in milliseconds since epoch, inclusive.
         */
        endTimeMillis?: string | null;
        /**
         * A client-generated identifier that is unique across all sessions owned by this particular user.
         */
        id?: string | null;
        /**
         * A timestamp that indicates when the session was last modified.
         */
        modifiedTimeMillis?: string | null;
        /**
         * A human readable name of the session.
         */
        name?: string | null;
        /**
         * A start time, in milliseconds since epoch, inclusive.
         */
        startTimeMillis?: string | null;
    }
    /**
     * Holder object for the value of a single field in a data point. A field value has a particular format and is only ever set to one of an integer or a floating point value.
     */
    export interface Schema$Value {
        /**
         * Floating point value. When this is set, other values must not be set.
         */
        fpVal?: number | null;
        /**
         * Integer value. When this is set, other values must not be set.
         */
        intVal?: number | null;
        /**
         * Map value. The valid key space and units for the corresponding value of each entry should be documented as part of the data type definition. Keys should be kept small whenever possible. Data streams with large keys and high data frequency may be down sampled.
         */
        mapVal?: Schema$ValueMapValEntry[];
        /**
         * String value. When this is set, other values must not be set. Strings should be kept small whenever possible. Data streams with large string values and high data frequency may be down sampled.
         */
        stringVal?: string | null;
    }
    export interface Schema$ValueMapValEntry {
        key?: string | null;
        value?: Schema$MapValue;
    }
    export class Resource$Users {
        context: APIRequestContext;
        dataset: Resource$Users$Dataset;
        dataSources: Resource$Users$Datasources;
        sessions: Resource$Users$Sessions;
        constructor(context: APIRequestContext);
    }
    export class Resource$Users$Dataset {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Aggregates data of a certain type or stream into buckets divided by a given type of boundary. Multiple data sets of multiple types and from multiple sources can be aggregated into exactly one bucket type per request.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataset.aggregate({
         *     // Aggregate data for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "aggregateBy": [],
         *       //   "bucketByActivitySegment": {},
         *       //   "bucketByActivityType": {},
         *       //   "bucketBySession": {},
         *       //   "bucketByTime": {},
         *       //   "endTimeMillis": "my_endTimeMillis",
         *       //   "filteredDataQualityStandard": [],
         *       //   "startTimeMillis": "my_startTimeMillis"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "bucket": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        aggregate(params: Params$Resource$Users$Dataset$Aggregate, options: StreamMethodOptions): GaxiosPromise<Readable>;
        aggregate(params?: Params$Resource$Users$Dataset$Aggregate, options?: MethodOptions): GaxiosPromise<Schema$AggregateResponse>;
        aggregate(params: Params$Resource$Users$Dataset$Aggregate, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        aggregate(params: Params$Resource$Users$Dataset$Aggregate, options: MethodOptions | BodyResponseCallback<Schema$AggregateResponse>, callback: BodyResponseCallback<Schema$AggregateResponse>): void;
        aggregate(params: Params$Resource$Users$Dataset$Aggregate, callback: BodyResponseCallback<Schema$AggregateResponse>): void;
        aggregate(callback: BodyResponseCallback<Schema$AggregateResponse>): void;
    }
    export interface Params$Resource$Users$Dataset$Aggregate extends StandardParameters {
        /**
         * Aggregate data for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$AggregateRequest;
    }
    export class Resource$Users$Datasources {
        context: APIRequestContext;
        dataPointChanges: Resource$Users$Datasources$Datapointchanges;
        datasets: Resource$Users$Datasources$Datasets;
        constructor(context: APIRequestContext);
        /**
         * Creates a new data source that is unique across all data sources belonging to this user. A data source is a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point in every dataset inserted into or read from the Fitness API has an associated data source. Each data source produces a unique stream of dataset updates, with a unique data source identifier. Not all changes to data source affect the data stream ID, so that data collected by updated versions of the same application/device can still be considered to belong to the same data source. Data sources are identified using a string generated by the server, based on the contents of the source being created. The dataStreamId field should not be set when invoking this method. It will be automatically generated by the server with the correct format. If a dataStreamId is set, it must match the format that the server would generate. This format is a combination of some fields from the data source, and has a specific order. If it doesn't match, the request will fail with an error. Specifying a DataType which is not a known type (beginning with "com.google.") will create a DataSource with a *custom data type*. Custom data types are only readable by the application that created them. Custom data types are *deprecated*; use standard data types instead. In addition to the data source fields included in the data source ID, the developer project number that is authenticated when creating the data source is included. This developer project number is obfuscated when read by any other developer reading public data types.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.create({
         *     // Create the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "application": {},
         *       //   "dataQualityStandard": [],
         *       //   "dataStreamId": "my_dataStreamId",
         *       //   "dataStreamName": "my_dataStreamName",
         *       //   "dataType": {},
         *       //   "device": {},
         *       //   "name": "my_name",
         *       //   "type": "my_type"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "application": {},
         *   //   "dataQualityStandard": [],
         *   //   "dataStreamId": "my_dataStreamId",
         *   //   "dataStreamName": "my_dataStreamName",
         *   //   "dataType": {},
         *   //   "device": {},
         *   //   "name": "my_name",
         *   //   "type": "my_type"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        create(params: Params$Resource$Users$Datasources$Create, options: StreamMethodOptions): GaxiosPromise<Readable>;
        create(params?: Params$Resource$Users$Datasources$Create, options?: MethodOptions): GaxiosPromise<Schema$DataSource>;
        create(params: Params$Resource$Users$Datasources$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        create(params: Params$Resource$Users$Datasources$Create, options: MethodOptions | BodyResponseCallback<Schema$DataSource>, callback: BodyResponseCallback<Schema$DataSource>): void;
        create(params: Params$Resource$Users$Datasources$Create, callback: BodyResponseCallback<Schema$DataSource>): void;
        create(callback: BodyResponseCallback<Schema$DataSource>): void;
        /**
         * Deletes the specified data source. The request will fail if the data source contains any data points.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.delete({
         *     // The data stream ID of the data source to delete.
         *     dataSourceId: 'placeholder-value',
         *     // Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "application": {},
         *   //   "dataQualityStandard": [],
         *   //   "dataStreamId": "my_dataStreamId",
         *   //   "dataStreamName": "my_dataStreamName",
         *   //   "dataType": {},
         *   //   "device": {},
         *   //   "name": "my_name",
         *   //   "type": "my_type"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Users$Datasources$Delete, options: StreamMethodOptions): GaxiosPromise<Readable>;
        delete(params?: Params$Resource$Users$Datasources$Delete, options?: MethodOptions): GaxiosPromise<Schema$DataSource>;
        delete(params: Params$Resource$Users$Datasources$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Users$Datasources$Delete, options: MethodOptions | BodyResponseCallback<Schema$DataSource>, callback: BodyResponseCallback<Schema$DataSource>): void;
        delete(params: Params$Resource$Users$Datasources$Delete, callback: BodyResponseCallback<Schema$DataSource>): void;
        delete(callback: BodyResponseCallback<Schema$DataSource>): void;
        /**
         * Returns the specified data source.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.get({
         *     // The data stream ID of the data source to retrieve.
         *     dataSourceId: 'placeholder-value',
         *     // Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "application": {},
         *   //   "dataQualityStandard": [],
         *   //   "dataStreamId": "my_dataStreamId",
         *   //   "dataStreamName": "my_dataStreamName",
         *   //   "dataType": {},
         *   //   "device": {},
         *   //   "name": "my_name",
         *   //   "type": "my_type"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Users$Datasources$Get, options: StreamMethodOptions): GaxiosPromise<Readable>;
        get(params?: Params$Resource$Users$Datasources$Get, options?: MethodOptions): GaxiosPromise<Schema$DataSource>;
        get(params: Params$Resource$Users$Datasources$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Users$Datasources$Get, options: MethodOptions | BodyResponseCallback<Schema$DataSource>, callback: BodyResponseCallback<Schema$DataSource>): void;
        get(params: Params$Resource$Users$Datasources$Get, callback: BodyResponseCallback<Schema$DataSource>): void;
        get(callback: BodyResponseCallback<Schema$DataSource>): void;
        /**
         * Lists all data sources that are visible to the developer, using the OAuth scopes provided. The list is not exhaustive; the user may have private data sources that are only visible to other developers, or calls using other scopes.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.list({
         *     // The names of data types to include in the list. If not specified, all data sources will be returned.
         *     dataTypeName: 'placeholder-value',
         *     // List data sources for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "dataSource": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Users$Datasources$List, options: StreamMethodOptions): GaxiosPromise<Readable>;
        list(params?: Params$Resource$Users$Datasources$List, options?: MethodOptions): GaxiosPromise<Schema$ListDataSourcesResponse>;
        list(params: Params$Resource$Users$Datasources$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Users$Datasources$List, options: MethodOptions | BodyResponseCallback<Schema$ListDataSourcesResponse>, callback: BodyResponseCallback<Schema$ListDataSourcesResponse>): void;
        list(params: Params$Resource$Users$Datasources$List, callback: BodyResponseCallback<Schema$ListDataSourcesResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListDataSourcesResponse>): void;
        /**
         * Updates the specified data source. The dataStreamId, dataType, type, dataStreamName, and device properties with the exception of version, cannot be modified. Data sources are identified by their dataStreamId.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.update({
         *     // The data stream ID of the data source to update.
         *     dataSourceId: 'placeholder-value',
         *     // Update the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "application": {},
         *       //   "dataQualityStandard": [],
         *       //   "dataStreamId": "my_dataStreamId",
         *       //   "dataStreamName": "my_dataStreamName",
         *       //   "dataType": {},
         *       //   "device": {},
         *       //   "name": "my_name",
         *       //   "type": "my_type"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "application": {},
         *   //   "dataQualityStandard": [],
         *   //   "dataStreamId": "my_dataStreamId",
         *   //   "dataStreamName": "my_dataStreamName",
         *   //   "dataType": {},
         *   //   "device": {},
         *   //   "name": "my_name",
         *   //   "type": "my_type"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        update(params: Params$Resource$Users$Datasources$Update, options: StreamMethodOptions): GaxiosPromise<Readable>;
        update(params?: Params$Resource$Users$Datasources$Update, options?: MethodOptions): GaxiosPromise<Schema$DataSource>;
        update(params: Params$Resource$Users$Datasources$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        update(params: Params$Resource$Users$Datasources$Update, options: MethodOptions | BodyResponseCallback<Schema$DataSource>, callback: BodyResponseCallback<Schema$DataSource>): void;
        update(params: Params$Resource$Users$Datasources$Update, callback: BodyResponseCallback<Schema$DataSource>): void;
        update(callback: BodyResponseCallback<Schema$DataSource>): void;
    }
    export interface Params$Resource$Users$Datasources$Create extends StandardParameters {
        /**
         * Create the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$DataSource;
    }
    export interface Params$Resource$Users$Datasources$Delete extends StandardParameters {
        /**
         * The data stream ID of the data source to delete.
         */
        dataSourceId?: string;
        /**
         * Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Datasources$Get extends StandardParameters {
        /**
         * The data stream ID of the data source to retrieve.
         */
        dataSourceId?: string;
        /**
         * Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Datasources$List extends StandardParameters {
        /**
         * The names of data types to include in the list. If not specified, all data sources will be returned.
         */
        dataTypeName?: string[];
        /**
         * List data sources for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Datasources$Update extends StandardParameters {
        /**
         * The data stream ID of the data source to update.
         */
        dataSourceId?: string;
        /**
         * Update the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$DataSource;
    }
    export class Resource$Users$Datasources$Datapointchanges {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Queries for user's data point changes for a particular data source.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.dataPointChanges.list({
         *     // The data stream ID of the data source that created the dataset.
         *     dataSourceId: 'placeholder-value',
         *     // If specified, no more than this many data point changes will be included in the response.
         *     limit: 'placeholder-value',
         *     // The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.
         *     pageToken: 'placeholder-value',
         *     // List data points for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "dataSourceId": "my_dataSourceId",
         *   //   "deletedDataPoint": [],
         *   //   "insertedDataPoint": [],
         *   //   "nextPageToken": "my_nextPageToken"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Users$Datasources$Datapointchanges$List, options: StreamMethodOptions): GaxiosPromise<Readable>;
        list(params?: Params$Resource$Users$Datasources$Datapointchanges$List, options?: MethodOptions): GaxiosPromise<Schema$ListDataPointChangesResponse>;
        list(params: Params$Resource$Users$Datasources$Datapointchanges$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Users$Datasources$Datapointchanges$List, options: MethodOptions | BodyResponseCallback<Schema$ListDataPointChangesResponse>, callback: BodyResponseCallback<Schema$ListDataPointChangesResponse>): void;
        list(params: Params$Resource$Users$Datasources$Datapointchanges$List, callback: BodyResponseCallback<Schema$ListDataPointChangesResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListDataPointChangesResponse>): void;
    }
    export interface Params$Resource$Users$Datasources$Datapointchanges$List extends StandardParameters {
        /**
         * The data stream ID of the data source that created the dataset.
         */
        dataSourceId?: string;
        /**
         * If specified, no more than this many data point changes will be included in the response.
         */
        limit?: number;
        /**
         * The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.
         */
        pageToken?: string;
        /**
         * List data points for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export class Resource$Users$Datasources$Datasets {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Performs an inclusive delete of all data points whose start and end times have any overlap with the time range specified by the dataset ID. For most data types, the entire data point will be deleted. For data types where the time span represents a consistent value (such as com.google.activity.segment), and a data point straddles either end point of the dataset, only the overlapping portion of the data point will be deleted.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.datasets.delete({
         *     // Dataset identifier that is a composite of the minimum data point start time and maximum data point end time represented as nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" where startTime and endTime are 64 bit integers.
         *     datasetId: 'placeholder-value',
         *     // The data stream ID of the data source that created the dataset.
         *     dataSourceId: 'placeholder-value',
         *     // Delete a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Users$Datasources$Datasets$Delete, options: StreamMethodOptions): GaxiosPromise<Readable>;
        delete(params?: Params$Resource$Users$Datasources$Datasets$Delete, options?: MethodOptions): GaxiosPromise<void>;
        delete(params: Params$Resource$Users$Datasources$Datasets$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Users$Datasources$Datasets$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
        delete(params: Params$Resource$Users$Datasources$Datasets$Delete, callback: BodyResponseCallback<void>): void;
        delete(callback: BodyResponseCallback<void>): void;
        /**
         * Returns a dataset containing all data points whose start and end times overlap with the specified range of the dataset minimum start time and maximum end time. Specifically, any data point whose start time is less than or equal to the dataset end time and whose end time is greater than or equal to the dataset start time.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.datasets.get({
         *     // Dataset identifier that is a composite of the minimum data point start time and maximum data point end time represented as nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" where startTime and endTime are 64 bit integers.
         *     datasetId: 'placeholder-value',
         *     // The data stream ID of the data source that created the dataset.
         *     dataSourceId: 'placeholder-value',
         *     // If specified, no more than this many data points will be included in the dataset. If there are more data points in the dataset, nextPageToken will be set in the dataset response. The limit is applied from the end of the time range. That is, if pageToken is absent, the limit most recent data points will be returned.
         *     limit: 'placeholder-value',
         *     // The continuation token, which is used to page through large datasets. To get the next page of a dataset, set this parameter to the value of nextPageToken from the previous response. Each subsequent call will yield a partial dataset with data point end timestamps that are strictly smaller than those in the previous partial response.
         *     pageToken: 'placeholder-value',
         *     // Retrieve a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "dataSourceId": "my_dataSourceId",
         *   //   "maxEndTimeNs": "my_maxEndTimeNs",
         *   //   "minStartTimeNs": "my_minStartTimeNs",
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "point": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Users$Datasources$Datasets$Get, options: StreamMethodOptions): GaxiosPromise<Readable>;
        get(params?: Params$Resource$Users$Datasources$Datasets$Get, options?: MethodOptions): GaxiosPromise<Schema$Dataset>;
        get(params: Params$Resource$Users$Datasources$Datasets$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Users$Datasources$Datasets$Get, options: MethodOptions | BodyResponseCallback<Schema$Dataset>, callback: BodyResponseCallback<Schema$Dataset>): void;
        get(params: Params$Resource$Users$Datasources$Datasets$Get, callback: BodyResponseCallback<Schema$Dataset>): void;
        get(callback: BodyResponseCallback<Schema$Dataset>): void;
        /**
         * Adds data points to a dataset. The dataset need not be previously created. All points within the given dataset will be returned with subsquent calls to retrieve this dataset. Data points can belong to more than one dataset. This method does not use patch semantics: the data points provided are merely inserted, with no existing data replaced.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.dataSources.datasets.patch({
         *     // This field is not used, and can be safely omitted.
         *     datasetId: 'placeholder-value',
         *     // The data stream ID of the data source that created the dataset.
         *     dataSourceId: 'placeholder-value',
         *     // Patch a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "dataSourceId": "my_dataSourceId",
         *       //   "maxEndTimeNs": "my_maxEndTimeNs",
         *       //   "minStartTimeNs": "my_minStartTimeNs",
         *       //   "nextPageToken": "my_nextPageToken",
         *       //   "point": []
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "dataSourceId": "my_dataSourceId",
         *   //   "maxEndTimeNs": "my_maxEndTimeNs",
         *   //   "minStartTimeNs": "my_minStartTimeNs",
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "point": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        patch(params: Params$Resource$Users$Datasources$Datasets$Patch, options: StreamMethodOptions): GaxiosPromise<Readable>;
        patch(params?: Params$Resource$Users$Datasources$Datasets$Patch, options?: MethodOptions): GaxiosPromise<Schema$Dataset>;
        patch(params: Params$Resource$Users$Datasources$Datasets$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        patch(params: Params$Resource$Users$Datasources$Datasets$Patch, options: MethodOptions | BodyResponseCallback<Schema$Dataset>, callback: BodyResponseCallback<Schema$Dataset>): void;
        patch(params: Params$Resource$Users$Datasources$Datasets$Patch, callback: BodyResponseCallback<Schema$Dataset>): void;
        patch(callback: BodyResponseCallback<Schema$Dataset>): void;
    }
    export interface Params$Resource$Users$Datasources$Datasets$Delete extends StandardParameters {
        /**
         * Dataset identifier that is a composite of the minimum data point start time and maximum data point end time represented as nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" where startTime and endTime are 64 bit integers.
         */
        datasetId?: string;
        /**
         * The data stream ID of the data source that created the dataset.
         */
        dataSourceId?: string;
        /**
         * Delete a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Datasources$Datasets$Get extends StandardParameters {
        /**
         * Dataset identifier that is a composite of the minimum data point start time and maximum data point end time represented as nanoseconds from the epoch. The ID is formatted like: "startTime-endTime" where startTime and endTime are 64 bit integers.
         */
        datasetId?: string;
        /**
         * The data stream ID of the data source that created the dataset.
         */
        dataSourceId?: string;
        /**
         * If specified, no more than this many data points will be included in the dataset. If there are more data points in the dataset, nextPageToken will be set in the dataset response. The limit is applied from the end of the time range. That is, if pageToken is absent, the limit most recent data points will be returned.
         */
        limit?: number;
        /**
         * The continuation token, which is used to page through large datasets. To get the next page of a dataset, set this parameter to the value of nextPageToken from the previous response. Each subsequent call will yield a partial dataset with data point end timestamps that are strictly smaller than those in the previous partial response.
         */
        pageToken?: string;
        /**
         * Retrieve a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Datasources$Datasets$Patch extends StandardParameters {
        /**
         * This field is not used, and can be safely omitted.
         */
        datasetId?: string;
        /**
         * The data stream ID of the data source that created the dataset.
         */
        dataSourceId?: string;
        /**
         * Patch a dataset for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Dataset;
    }
    export class Resource$Users$Sessions {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Deletes a session specified by the given session ID.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.sessions.delete({
         *     // The ID of the session to be deleted.
         *     sessionId: 'placeholder-value',
         *     // Delete a session for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Users$Sessions$Delete, options: StreamMethodOptions): GaxiosPromise<Readable>;
        delete(params?: Params$Resource$Users$Sessions$Delete, options?: MethodOptions): GaxiosPromise<void>;
        delete(params: Params$Resource$Users$Sessions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Users$Sessions$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
        delete(params: Params$Resource$Users$Sessions$Delete, callback: BodyResponseCallback<void>): void;
        delete(callback: BodyResponseCallback<void>): void;
        /**
         * Lists sessions previously created.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.read',
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.read',
         *       'https://www.googleapis.com/auth/fitness.blood_glucose.write',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.read',
         *       'https://www.googleapis.com/auth/fitness.blood_pressure.write',
         *       'https://www.googleapis.com/auth/fitness.body.read',
         *       'https://www.googleapis.com/auth/fitness.body.write',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.read',
         *       'https://www.googleapis.com/auth/fitness.body_temperature.write',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.read',
         *       'https://www.googleapis.com/auth/fitness.heart_rate.write',
         *       'https://www.googleapis.com/auth/fitness.location.read',
         *       'https://www.googleapis.com/auth/fitness.location.write',
         *       'https://www.googleapis.com/auth/fitness.nutrition.read',
         *       'https://www.googleapis.com/auth/fitness.nutrition.write',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
         *       'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.read',
         *       'https://www.googleapis.com/auth/fitness.reproductive_health.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.read',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.sessions.list({
         *     // If non-empty, only sessions with these activity types should be returned.
         *     activityType: 'placeholder-value',
         *     // An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response. If this time is omitted but startTime is specified, all sessions from startTime to the end of time will be returned.
         *     endTime: 'placeholder-value',
         *     // If true, and if both startTime and endTime are omitted, session deletions will be returned.
         *     includeDeleted: 'placeholder-value',
         *     // The continuation token, which is used for incremental syncing. To get the next batch of changes, set this parameter to the value of nextPageToken from the previous response. The page token is ignored if either start or end time is specified. If none of start time, end time, and the page token is specified, sessions modified in the last 30 days are returned.
         *     pageToken: 'placeholder-value',
         *     // An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response. If this time is omitted but endTime is specified, all sessions from the start of time up to endTime will be returned.
         *     startTime: 'placeholder-value',
         *     // List sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "deletedSession": [],
         *   //   "hasMoreData": false,
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "session": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Users$Sessions$List, options: StreamMethodOptions): GaxiosPromise<Readable>;
        list(params?: Params$Resource$Users$Sessions$List, options?: MethodOptions): GaxiosPromise<Schema$ListSessionsResponse>;
        list(params: Params$Resource$Users$Sessions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Users$Sessions$List, options: MethodOptions | BodyResponseCallback<Schema$ListSessionsResponse>, callback: BodyResponseCallback<Schema$ListSessionsResponse>): void;
        list(params: Params$Resource$Users$Sessions$List, callback: BodyResponseCallback<Schema$ListSessionsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListSessionsResponse>): void;
        /**
         * Updates or insert a given session.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/fitness.googleapis.com
         * // - Login into gcloud by running:
         * //   `$ gcloud auth application-default login`
         * // - Install the npm module by running:
         * //   `$ npm install googleapis`
         *
         * const {google} = require('googleapis');
         * const fitness = google.fitness('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: [
         *       'https://www.googleapis.com/auth/fitness.activity.write',
         *       'https://www.googleapis.com/auth/fitness.sleep.write',
         *     ],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await fitness.users.sessions.update({
         *     // The ID of the session to be created.
         *     sessionId: 'placeholder-value',
         *     // Create sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         *     userId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "activeTimeMillis": "my_activeTimeMillis",
         *       //   "activityType": 0,
         *       //   "application": {},
         *       //   "description": "my_description",
         *       //   "endTimeMillis": "my_endTimeMillis",
         *       //   "id": "my_id",
         *       //   "modifiedTimeMillis": "my_modifiedTimeMillis",
         *       //   "name": "my_name",
         *       //   "startTimeMillis": "my_startTimeMillis"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "activeTimeMillis": "my_activeTimeMillis",
         *   //   "activityType": 0,
         *   //   "application": {},
         *   //   "description": "my_description",
         *   //   "endTimeMillis": "my_endTimeMillis",
         *   //   "id": "my_id",
         *   //   "modifiedTimeMillis": "my_modifiedTimeMillis",
         *   //   "name": "my_name",
         *   //   "startTimeMillis": "my_startTimeMillis"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        update(params: Params$Resource$Users$Sessions$Update, options: StreamMethodOptions): GaxiosPromise<Readable>;
        update(params?: Params$Resource$Users$Sessions$Update, options?: MethodOptions): GaxiosPromise<Schema$Session>;
        update(params: Params$Resource$Users$Sessions$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        update(params: Params$Resource$Users$Sessions$Update, options: MethodOptions | BodyResponseCallback<Schema$Session>, callback: BodyResponseCallback<Schema$Session>): void;
        update(params: Params$Resource$Users$Sessions$Update, callback: BodyResponseCallback<Schema$Session>): void;
        update(callback: BodyResponseCallback<Schema$Session>): void;
    }
    export interface Params$Resource$Users$Sessions$Delete extends StandardParameters {
        /**
         * The ID of the session to be deleted.
         */
        sessionId?: string;
        /**
         * Delete a session for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Sessions$List extends StandardParameters {
        /**
         * If non-empty, only sessions with these activity types should be returned.
         */
        activityType?: number[];
        /**
         * An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response. If this time is omitted but startTime is specified, all sessions from startTime to the end of time will be returned.
         */
        endTime?: string;
        /**
         * If true, and if both startTime and endTime are omitted, session deletions will be returned.
         */
        includeDeleted?: boolean;
        /**
         * The continuation token, which is used for incremental syncing. To get the next batch of changes, set this parameter to the value of nextPageToken from the previous response. The page token is ignored if either start or end time is specified. If none of start time, end time, and the page token is specified, sessions modified in the last 30 days are returned.
         */
        pageToken?: string;
        /**
         * An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response. If this time is omitted but endTime is specified, all sessions from the start of time up to endTime will be returned.
         */
        startTime?: string;
        /**
         * List sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
    }
    export interface Params$Resource$Users$Sessions$Update extends StandardParameters {
        /**
         * The ID of the session to be created.
         */
        sessionId?: string;
        /**
         * Create sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time.
         */
        userId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Session;
    }
    export {};
}