Skip to content

Commit 16be5d2

Browse files
committed
[Make] Sync *.swift
1 parent 024bb51 commit 16be5d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/copilot/Types.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ public enum Components {
13401340
}
13411341
/// Types generated from the `#/components/parameters` section of the OpenAPI document.
13421342
public enum Parameters {
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)."
13441344
///
13451345
/// - Remark: Generated from `#/components/parameters/page`.
13461346
public typealias page = Swift.Int
@@ -1741,19 +1741,19 @@ public enum Operations {
17411741
public var path: Operations.copilot_sol_list_hyphen_copilot_hyphen_seats.Input.Path
17421742
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query`.
17431743
public struct Query: 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)."
17451745
///
17461746
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query/page`.
17471747
public var page: 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)."
17491749
///
17501750
/// - Remark: Generated from `#/paths/orgs/{org}/copilot/billing/seats/GET/query/per_page`.
17511751
public var per_page: Swift.Int?
17521752
/// Creates a new `Query`.
17531753
///
17541754
/// - 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)."
17571757
public init(
17581758
page: Components.Parameters.page? = nil,
17591759
per_page: Swift.Int? = nil

0 commit comments

Comments
 (0)