A class storing information about the keys associated with the asset.
| 104 | * A class storing information about the keys associated with the asset. |
| 105 | */ |
| 106 | public static class Key { |
| 107 | /** |
| 108 | * Hex-encoded representation of the root extended public key |
| 109 | */ |
| 110 | @SerializedName("root_xpub") |
| 111 | public String rootXpub; |
| 112 | |
| 113 | /** |
| 114 | * The derived public key, used in the asset's issuance program. |
| 115 | */ |
| 116 | @SerializedName("asset_pubkey") |
| 117 | public String assetPubkey; |
| 118 | |
| 119 | /** |
| 120 | * The derivation path of the derived key. |
| 121 | */ |
| 122 | @SerializedName("asset_derivation_path") |
| 123 | public String[] assetDerivationPath; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * A paged collection of assets returned from a query. |
nothing calls this directly
no outgoing calls
no test coverage detected