23 lines
509 B
Swift
23 lines
509 B
Swift
//
|
|
// NodeAction.swift
|
|
//
|
|
//
|
|
// Created by Nut.Tech on 10.01.2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct NodeAction: Decodable {
|
|
public let accountActionSeq: Int
|
|
public let actionTrace: NodeActionTrace
|
|
public let globalActionSeq: Int
|
|
public let irreversible: Bool
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case accountActionSeq = "account_action_seq"
|
|
case actionTrace = "action_trace"
|
|
case globalActionSeq = "global_action_seq"
|
|
case irreversible
|
|
}
|
|
}
|