pub struct Payment {Show 31 fields
pub id: String,
pub schema: String,
pub aleph_url: Option<Vec<String>>,
pub amount: Option<Vec<f64>>,
pub amount_eur: Option<Vec<f64>>,
pub amount_usd: Option<Vec<f64>>,
pub beneficiary: Vec<String>,
pub beneficiary_account: Option<Vec<String>>,
pub contract: Option<Vec<String>>,
pub currency: Option<Vec<String>>,
pub date: Option<Vec<String>>,
pub description: Option<Vec<String>>,
pub end_date: Option<Vec<String>>,
pub index_text: Option<Vec<String>>,
pub modified_at: Option<Vec<String>>,
pub names_mentioned: Option<Vec<String>>,
pub payer: Vec<String>,
pub payer_account: Option<Vec<String>>,
pub programme: Option<Vec<String>>,
pub project: Option<Vec<String>>,
pub proof: Option<Vec<String>>,
pub publisher: Option<Vec<String>>,
pub publisher_url: Option<Vec<String>>,
pub purpose: Option<Vec<String>>,
pub record_id: Option<Vec<String>>,
pub retrieved_at: Option<Vec<String>>,
pub sequence_number: Option<Vec<String>>,
pub source_url: Option<Vec<String>>,
pub start_date: Option<Vec<String>>,
pub summary: Option<Vec<String>>,
pub transaction_number: Option<Vec<String>>,
}Expand description
FTM Schema: Payment
Fields§
§id: String§schema: String§aleph_url: Option<Vec<String>>Property: Aleph URL
amount: Option<Vec<f64>>Property: Amount
amount_eur: Option<Vec<f64>>Property: Amount in EUR
amount_usd: Option<Vec<f64>>Property: Amount in USD
beneficiary: Vec<String>Property: Beneficiary
beneficiary_account: Option<Vec<String>>Property: Beneficiary bank account
contract: Option<Vec<String>>Property: Contract
currency: Option<Vec<String>>Property: Currency
date: Option<Vec<String>>Property: Date
description: Option<Vec<String>>Property: Description
end_date: Option<Vec<String>>Property: End date
index_text: Option<Vec<String>>Property: Index text
modified_at: Option<Vec<String>>Property: Modified on
names_mentioned: Option<Vec<String>>Property: Detected names
payer: Vec<String>Property: Payer
payer_account: Option<Vec<String>>Property: Payer bank account
programme: Option<Vec<String>>Property: Payment programme
project: Option<Vec<String>>Property: Project
proof: Option<Vec<String>>Property: Source document
publisher: Option<Vec<String>>Property: Publishing source
publisher_url: Option<Vec<String>>Property: Publishing source URL
purpose: Option<Vec<String>>Property: Payment purpose
record_id: Option<Vec<String>>Property: Record ID
retrieved_at: Option<Vec<String>>Property: Retrieved on
sequence_number: Option<Vec<String>>Property: Sequence number
source_url: Option<Vec<String>>Property: Source link
start_date: Option<Vec<String>>Property: Start date
summary: Option<Vec<String>>Property: Summary
transaction_number: Option<Vec<String>>Property: Transaction number
Implementations§
Source§impl Payment
impl Payment
Sourcepub fn builder() -> PaymentBuilder
pub fn builder() -> PaymentBuilder
Create an instance of Payment using the builder syntax
Source§impl Payment
impl Payment
Sourcepub fn new(id: impl Into<String>) -> Self
👎Deprecated: Use the builder() method instead to ensure required fields are set
pub fn new(id: impl Into<String>) -> Self
Create a new entity with the given ID
Sourcepub fn schema_name() -> &'static str
pub fn schema_name() -> &'static str
Get the schema name
Sourcepub fn to_ftm_json(&self) -> Result<String, Error>
pub fn to_ftm_json(&self) -> Result<String, Error>
Serialize to standard FTM nested JSON format
Produces {"id": "...", "schema": "...", "properties": {...}}