Skip to content

Instantly share code, notes, and snippets.

@stephanhuewe
stephanhuewe / Camt052v8.cs
Last active November 10, 2025 13:06
Camt.052.001.08 C# Serialized Class
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
[XmlRoot(ElementName = "Document", Namespace = "urn:iso:std:iso:20022:tech:xsd:camt.052.001.08")]
public class Document
{
[XmlElement(ElementName = "BkToCstmrAcctRpt", Namespace = "urn:iso:std:iso:20022:tech:xsd:camt.052.001.08")]
public BkToCstmrAcctRpt BkToCstmrAcctRpt { get; set; }
}