interface ITransaction { uuid: string; blockchain: string; status: string; status_description: string; fraud_status: string; issuer_address: string; policy_id: string; invalid_slot: string; cost: string; estimated_cost: string; convenience_fee: string; blockchain_fee: string; is_deleted: boolean; is_minted: boolean; is_voided: boolean; is_resubmitted: boolean; is_refunded: boolean; deposit_address: string; created_on: string; updated_on: string; expires_on: string; is_auto_processing: boolean; has_royalties: boolean; royalties_estimated_cost: string; royalties_minted: boolean; royalties_minted_on: string; royalties_burned: boolean; royalties_burned_on: string; name: string; image: string; description: string; amount: number; metadata: string }
Transaction{ uuid string($uuid) title: Uuid readOnly: true status string title: Status readOnly: true minLength: 1 status_description string title: Status description readOnly: true minLength: 1 fraud_status string title: Fraud status readOnly: true minLength: 1 type* string title: Type minLength: 1 issuer_address string title: Issuer address readOnly: true minLength: 1 policy_id string title: Policy id readOnly: true minLength: 1 invalid_slot string title: Invalid slot readOnly: true minLength: 1 amount* integer title: Amount minimum: 1 cost string title: Cost readOnly: true estimated_cost string title: Estimated Cost readOnly: true convenience_fee string title: Convenience fee readOnly: true blockchain_fee string title: Blockchain fee readOnly: true name* string title: Name maxLength: 32 minLength: 1 image* string title: Image maxLength: 64 minLength: 1 description string title: Description maxLength: 64 minLength: 1 is_deleted boolean title: Is deleted readOnly: true is_minted boolean title: Is minted readOnly: true is_voided boolean title: Is voided readOnly: true is_resubmitted boolean title: Is resubmitted readOnly: true is_refunded boolean title: Is refunded readOnly: true deposit_address string title: Deposit address readOnly: true minLength: 1 created_on string title: Created on readOnly: true minLength: 1 expires_on string title: Expires on readOnly: true minLength: 1 updated_on string title: Updated on readOnly: true minLength: 1 is_auto_processing boolean title: Is auto processing royalties_estimated_cost string title: Estimated Cost readOnly: true has_royalties boolean title: Has royalties readOnly: true royalties_minted boolean title: Royalties minted readOnly: true royalties_minted_on string title: Royalties minted on readOnly: true minLength: 1 royalties_burned boolean title: Royalties burned readOnly: true royalties_burned_on string title: Royalties burned on readOnly: true minLength: 1 royalties_rate string($decimal) title: Royalties rate royalties string title: Royalties maxLength: 120 minLength: 1 }