You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/copilot/Types.swift
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1340,7 +1340,7 @@ public enum Components {
1340
1340
}
1341
1341
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
1342
1342
publicenumParameters{
1343
-
/// Page number of the results to fetch.
1343
+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1344
1344
///
1345
1345
/// - Remark: Generated from `#/components/parameters/page`.
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query`.
1743
1743
publicstructQuery:Sendable,Hashable{
1744
-
/// Page number of the results to fetch.
1744
+
/// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1745
1745
///
1746
1746
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query/page`.
1747
1747
publicvarpage:Components.Parameters.page?
1748
-
/// The number of results per page (max 100).
1748
+
/// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1749
1749
///
1750
1750
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query/per_page`.
1751
1751
publicvarper_page:Swift.Int?
1752
1752
/// Creates a new `Query`.
1753
1753
///
1754
1754
/// - Parameters:
1755
-
/// - page: Page number of the results to fetch.
1756
-
/// - per_page: The number of results per page (max 100).
1755
+
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
1756
+
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
0 commit comments