All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.iso20022.pain013_001.v09.PartyAndSignature3 Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.09.21 at 06:05:21 PM IST 
//


package org.iso20022.pain013_001.v09;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for PartyAndSignature3 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PartyAndSignature3">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Pty" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}PartyIdentification135"/>
 *         <element name="Sgntr" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}SkipPayload"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PartyAndSignature3", propOrder = { "pty", "sgntr" }) public class PartyAndSignature3 { @XmlElement(name = "Pty", required = true) protected PartyIdentification135 pty; @XmlElement(name = "Sgntr", required = true) protected SkipPayload sgntr; /** * Gets the value of the pty property. * * @return * possible object is * {@link PartyIdentification135 } * */ public PartyIdentification135 getPty() { return pty; } /** * Sets the value of the pty property. * * @param value * allowed object is * {@link PartyIdentification135 } * */ public void setPty(PartyIdentification135 value) { this.pty = value; } /** * Gets the value of the sgntr property. * * @return * possible object is * {@link SkipPayload } * */ public SkipPayload getSgntr() { return sgntr; } /** * Sets the value of the sgntr property. * * @param value * allowed object is * {@link SkipPayload } * */ public void setSgntr(SkipPayload value) { this.sgntr = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy