CallbackContext
public struct CallbackContext
                Used to resolve callback urls, should be populated after signed txn has been broadcast.
- 
                  
                  
The signature that the transaction was signed with.
Declaration
Swift
public var signature: Signature - 
                  
                  
Transaction hash, should only be set if the transaction was broadcast.
Declaration
Swift
public var id: Data? - 
                  
                  
Block number transaction was included in, should only be set if the transaction was broadcast.
Declaration
Swift
public var blockNum: Int32? - 
                  
                  
Transaction index in block, should only be set if the transaction was broadcast.
Declaration
Swift
public var trxNum: Int32? - 
                  
                  
Declaration
Swift
public init(signature: Signature, id: Data? = nil, blockNum: Int32? = nil, trxNum: Int32? = nil) 
View on GitHub
        CallbackContext Structure Reference