55 lines
979 B
TypeScript
55 lines
979 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Local launch-origin diagnostic sample for the UI.
|
|
*/
|
|
export type DemoPipeline2LocalLaunchOriginDiagnosticSample = {
|
|
/**
|
|
* Launch attribution id.
|
|
*/
|
|
launchAttributionId: number,
|
|
/**
|
|
* Launch surface code.
|
|
*/
|
|
launchSurfaceCode: string,
|
|
/**
|
|
* Launch surface display name.
|
|
*/
|
|
launchSurfaceName: string,
|
|
/**
|
|
* Transaction signature.
|
|
*/
|
|
transactionSignature: string,
|
|
/**
|
|
* Decoded event id.
|
|
*/
|
|
decodedEventId: number,
|
|
/**
|
|
* Effective protocol recorded on the decoded event.
|
|
*/
|
|
protocolName: string,
|
|
/**
|
|
* Match kind used for attribution.
|
|
*/
|
|
matchKind: string,
|
|
/**
|
|
* Matched key value.
|
|
*/
|
|
matchedValue: string,
|
|
/**
|
|
* Optional pool id.
|
|
*/
|
|
poolId: number | null,
|
|
/**
|
|
* Optional pool address.
|
|
*/
|
|
poolAddress: string | null,
|
|
/**
|
|
* Optional pair id.
|
|
*/
|
|
pairId: number | null,
|
|
/**
|
|
* Optional pair symbol.
|
|
*/
|
|
pairSymbol: string | null, };
|