File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6203,6 +6203,8 @@ public enum Components {
6203
6203
public struct WalletDNS: Codable, Hashable, Sendable {
6204
6204
/// - Remark: Generated from `#/components/schemas/WalletDNS/address`.
6205
6205
public var address: Swift.String
6206
+ /// - Remark: Generated from `#/components/schemas/WalletDNS/account`.
6207
+ public var account: Components.Schemas.AccountAddress
6206
6208
/// - Remark: Generated from `#/components/schemas/WalletDNS/is_wallet`.
6207
6209
public var is_wallet: Swift.Bool
6208
6210
/// - Remark: Generated from `#/components/schemas/WalletDNS/has_method_pubkey`.
@@ -6215,25 +6217,29 @@ public enum Components {
6215
6217
///
6216
6218
/// - Parameters:
6217
6219
/// - address:
6220
+ /// - account:
6218
6221
/// - is_wallet:
6219
6222
/// - has_method_pubkey:
6220
6223
/// - has_method_seqno:
6221
6224
/// - names:
6222
6225
public init(
6223
6226
address: Swift.String,
6227
+ account: Components.Schemas.AccountAddress,
6224
6228
is_wallet: Swift.Bool,
6225
6229
has_method_pubkey: Swift.Bool,
6226
6230
has_method_seqno: Swift.Bool,
6227
6231
names: [Swift.String]
6228
6232
) {
6229
6233
self.address = address
6234
+ self.account = account
6230
6235
self.is_wallet = is_wallet
6231
6236
self.has_method_pubkey = has_method_pubkey
6232
6237
self.has_method_seqno = has_method_seqno
6233
6238
self.names = names
6234
6239
}
6235
6240
public enum CodingKeys: String, CodingKey {
6236
6241
case address
6242
+ case account
6237
6243
case is_wallet
6238
6244
case has_method_pubkey
6239
6245
case has_method_seqno
Original file line number Diff line number Diff line change @@ -5406,10 +5406,14 @@ components:
5406
5406
- has_method_pubkey
5407
5407
- has_method_seqno
5408
5408
- names
5409
+ - account
5409
5410
properties :
5410
5411
address :
5411
5412
type : string
5413
+ format : address
5412
5414
example : " 0:da6b1b6663a0e4d18cc8574ccd9db5296e367dd9324706f3bbd9eb1cd2caf0bf"
5415
+ account :
5416
+ $ref : ' #/components/schemas/AccountAddress'
5413
5417
is_wallet :
5414
5418
type : boolean
5415
5419
example : true
You can’t perform that action at this time.
0 commit comments