Skip to content

Commit 1f7becd

Browse files
Commit via running: make Sources/users
1 parent 996e94e commit 1f7becd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Sources/users/Types.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12601,25 +12601,31 @@ public enum Operations {
1260112601
public var repositoryId: Swift.Int?
1260212602
/// - Remark: Generated from `#/paths/users/{username}/attestations/{subject_digest}/GET/responses/200/content/json/AttestationsPayload/bundle_url`.
1260312603
public var bundleUrl: Swift.String?
12604+
/// - Remark: Generated from `#/paths/users/{username}/attestations/{subject_digest}/GET/responses/200/content/json/AttestationsPayload/initiator`.
12605+
public var initiator: Swift.String?
1260412606
/// Creates a new `AttestationsPayloadPayload`.
1260512607
///
1260612608
/// - Parameters:
1260712609
/// - bundle: The attestation's Sigstore Bundle.
1260812610
/// - repositoryId:
1260912611
/// - bundleUrl:
12612+
/// - initiator:
1261012613
public init(
1261112614
bundle: Operations.UsersListAttestations.Output.Ok.Body.JsonPayload.AttestationsPayloadPayload.BundlePayload? = nil,
1261212615
repositoryId: Swift.Int? = nil,
12613-
bundleUrl: Swift.String? = nil
12616+
bundleUrl: Swift.String? = nil,
12617+
initiator: Swift.String? = nil
1261412618
) {
1261512619
self.bundle = bundle
1261612620
self.repositoryId = repositoryId
1261712621
self.bundleUrl = bundleUrl
12622+
self.initiator = initiator
1261812623
}
1261912624
public enum CodingKeys: String, CodingKey {
1262012625
case bundle
1262112626
case repositoryId = "repository_id"
1262212627
case bundleUrl = "bundle_url"
12628+
case initiator
1262312629
}
1262412630
}
1262512631
/// - Remark: Generated from `#/paths/users/{username}/attestations/{subject_digest}/GET/responses/200/content/json/attestations`.

0 commit comments

Comments
 (0)