Skip to content

Commit 1988939

Browse files
committed
Types
- remove type enum from Action
1 parent 26a82cc commit 1988939

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Packages/ton-api/Sources/Generated/Types.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5014,8 +5014,6 @@ public enum Components {
50145014
case DomainRenew = "DomainRenew"
50155015
case Unknown = "Unknown"
50165016
}
5017-
/// - Remark: Generated from `#/components/schemas/Action/type`.
5018-
public var _type: Components.Schemas.Action._typePayload
50195017
/// - Remark: Generated from `#/components/schemas/Action/status`.
50205018
@frozen public enum statusPayload: String, Codable, Hashable, Sendable {
50215019
case ok = "ok"
@@ -5064,7 +5062,6 @@ public enum Components {
50645062
/// Creates a new `Action`.
50655063
///
50665064
/// - Parameters:
5067-
/// - _type:
50685065
/// - status:
50695066
/// - TonTransfer:
50705067
/// - ContractDeploy:
@@ -5086,7 +5083,6 @@ public enum Components {
50865083
/// - DomainRenew:
50875084
/// - simple_preview:
50885085
public init(
5089-
_type: Components.Schemas.Action._typePayload,
50905086
status: Components.Schemas.Action.statusPayload,
50915087
TonTransfer: Components.Schemas.TonTransferAction? = nil,
50925088
ContractDeploy: Components.Schemas.ContractDeployAction? = nil,
@@ -5108,7 +5104,6 @@ public enum Components {
51085104
DomainRenew: Components.Schemas.DomainRenewAction? = nil,
51095105
simple_preview: Components.Schemas.ActionSimplePreview
51105106
) {
5111-
self._type = _type
51125107
self.status = status
51135108
self.TonTransfer = TonTransfer
51145109
self.ContractDeploy = ContractDeploy
@@ -5131,7 +5126,6 @@ public enum Components {
51315126
self.simple_preview = simple_preview
51325127
}
51335128
public enum CodingKeys: String, CodingKey {
5134-
case _type = "type"
51355129
case status
51365130
case TonTransfer
51375131
case ContractDeploy

0 commit comments

Comments
 (0)