Struct Field70

Source
pub struct Field70 {
    pub information: Vec<String>,
}
Expand description

§Field 70: Remittance Information

§Overview

Field 70 contains remittance information in SWIFT payment messages, providing details about the purpose and context of the payment. This field allows the ordering customer to include relevant information that helps the beneficiary identify and process the payment, such as invoice numbers, contract references, or payment descriptions. The remittance information is crucial for payment reconciliation and business process automation.

§Format Specification

Format: 4*35x

  • 4*35x: Up to 4 lines of 35 characters each
  • Line structure: Free-form text for remittance details
  • Character set: SWIFT character set (A-Z, 0-9, and limited special characters)
  • Line separation: Each line on separate row

§Structure

PAYMENT FOR INVOICE INV-2024-001234
CONTRACT REF: SUPPLY-AGREEMENT-2024
DELIVERY DATE: 15-MAR-2024
NET 30 DAYS PAYMENT TERMS
│                              │
└──────────────────────────────┘
       Up to 35 characters per line
       Maximum 4 lines

§Field Components

  • Invoice References: Invoice numbers and billing details
  • Contract Information: Contract numbers and references
  • Payment Purpose: Description of goods or services
  • Additional Details: Delivery dates, terms, or special instructions

§Usage Context

Field 70 is used in:

  • MT103: Single Customer Credit Transfer
  • MT200: Financial Institution Transfer
  • MT202: General Financial Institution Transfer
  • MT202COV: Cover for customer credit transfer
  • MT205: Financial Institution Transfer for its own account

§Business Applications

  • Payment reconciliation: Matching payments to invoices
  • Accounts receivable: Automated payment processing
  • Compliance reporting: Supporting audit trails
  • Business process automation: Enabling straight-through processing
  • Customer communication: Providing payment context
  • Dispute resolution: Supporting payment inquiries

§Examples

:70:PAYMENT FOR INVOICE 12345
└─── Simple invoice payment reference

:70:INVOICE INV-2024-001234
CONTRACT SUPPLY-AGREEMENT-2024
DELIVERY 15-MAR-2024
NET 30 PAYMENT TERMS
└─── Detailed commercial payment information

:70:SALARY PAYMENT MARCH 2024
EMPLOYEE ID: EMP-789012
PAYROLL REF: PR-2024-03
└─── Payroll payment details

:70:TRADE FINANCE SETTLEMENT
LC NUMBER: LC-2024-567890
DOCUMENTS COMPLIANT
PAYMENT AS PER LC TERMS
└─── Trade finance payment reference

§Remittance Information Types

  • Commercial payments: Invoice and purchase order references
  • Trade finance: Letter of credit and documentary collection details
  • Payroll: Salary and benefit payment information
  • Tax payments: Tax reference numbers and periods
  • Loan payments: Loan account and installment details
  • Utility payments: Account numbers and billing periods
  • Insurance: Policy numbers and coverage details

§Validation Rules

  1. Line count: Maximum 4 lines
  2. Line length: Maximum 35 characters per line
  3. Character set: SWIFT character set only
  4. Content: Should contain meaningful remittance information
  5. Empty lines: Generally avoided for clarity
  6. Control characters: Not allowed
  7. Special characters: Limited to SWIFT-approved set

§Network Validated Rules (SWIFT Standards)

  • Maximum 4 lines allowed (Error: T26)
  • Each line maximum 35 characters (Error: T50)
  • Must use SWIFT character set only (Error: T61)
  • Content should be meaningful (Error: T40)
  • No control characters permitted (Error: T35)
  • Field is optional but recommended (Warning: W70)

Fields§

§information: Vec<String>

Remittance information lines (up to 4 lines of 35 characters each)

Implementations§

Source§

impl Field70

Source

pub fn new(information: Vec<String>) -> Self

Trait Implementations§

Source§

impl Clone for Field70

Source§

fn clone(&self) -> Field70

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Field70

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Field70

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for Field70

Source§

fn eq(&self, other: &Field70) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Field70

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl SwiftField for Field70

Source§

fn parse(value: &str) -> Result<Self>

Parse field value from string representation
Source§

fn to_swift_string(&self) -> String

Convert field back to SWIFT string format
Source§

fn validate(&self) -> ValidationResult

Validate field according to SWIFT format rules
Source§

fn format_spec() -> &'static str

Get field format specification
Source§

impl StructuralPartialEq for Field70

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,