27 lines
583 B
TypeScript
27 lines
583 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Rejected on-chain discovery candidate summary.
|
|
*/
|
|
export type Demo3OnchainDexRejectedCandidateSummary = {
|
|
/**
|
|
* Candidate kind rejected by target filtering.
|
|
*/
|
|
candidateKind: string,
|
|
/**
|
|
* Optional instruction data prefix.
|
|
*/
|
|
instructionDataPrefix: string | null,
|
|
/**
|
|
* Optional instruction name.
|
|
*/
|
|
instructionName: string | null,
|
|
/**
|
|
* Rejection reason.
|
|
*/
|
|
rejectionReason: string,
|
|
/**
|
|
* Count of matching rejected candidates.
|
|
*/
|
|
count: number, };
|