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

com.adyen.model.nexo.AdminRequest Maven / Gradle / Ivy

package com.adyen.model.nexo;

import io.swagger.v3.oas.annotations.media.Schema;

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


/**
 * Definition: Content of the Custom Admin Request messageType. -- Usage: Empty
 *
 * 

Java class for AdminRequest complex type. * *

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

 * <complexType name="AdminRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ServiceIdentification" type="{}ServiceIdentification" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AdminRequest", propOrder = { "serviceIdentification" }) public class AdminRequest { /** * The Service identification. */ @XmlElement(name = "ServiceIdentification") @Schema(description = "Identification of the administrative service to process.") protected String serviceIdentification; /** * Gets the value of the serviceIdentification property. * * @return possible object is {@link String } */ public String getServiceIdentification() { return serviceIdentification; } /** * Sets the value of the serviceIdentification property. * * @param value allowed object is {@link String } */ public void setServiceIdentification(String value) { this.serviceIdentification = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy