EosioRpcTableRowsRequest
public struct EosioRpcTableRowsRequest : Codable
The request struct for get_table_rows
RPC requests.
-
Declaration
Swift
public enum EncodeType : String, Codable
-
Declaration
Swift
public var scope: String
-
Declaration
Swift
public var code: String
-
Declaration
Swift
public var table: String
-
Declaration
Swift
public var tableKey: String?
-
Declaration
Swift
public var json: Bool
-
Declaration
Swift
public var lowerBound: String?
-
Declaration
Swift
public var upperBound: String?
-
Declaration
Swift
public var limit: UInt32
-
Declaration
Swift
public var indexPosition: String
-
Declaration
Swift
public var keyType: String?
-
Declaration
Swift
public var encodeType: EncodeType
-
Declaration
Swift
public var reverse: Bool?
-
Declaration
Swift
public var showPayer: Bool?
-
init(scope:
code: table: json: limit: tableKey: lowerBound: upperBound: indexPosition: keyType: encodeType: reverse: showPayer: ) Declaration
Swift
public init( scope: String, code: String, table: String, json: Bool = true, limit: UInt32 = 10, tableKey: String? = nil, lowerBound: String? = nil, upperBound: String? = nil, indexPosition: String = "1", keyType: String? = nil, encodeType: EncodeType = .dec, reverse: Bool? = nil, showPayer: Bool? = nil )