com.microsoft.bingads.v13.customermanagement.Notification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.customermanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Notification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Notification", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"typeId",
"id",
"severity",
"title",
"message",
"additionalInfo"
})
public class Notification {
@XmlElement(name = "TypeId")
protected Integer typeId;
@XmlElement(name = "Id")
protected Long id;
@XmlElement(name = "Severity")
@XmlSchemaType(name = "unsignedByte")
protected Short severity;
@XmlElement(name = "Title", nillable = true)
protected String title;
@XmlElement(name = "Message", nillable = true)
protected String message;
@XmlElement(name = "AdditionalInfo", nillable = true)
protected ArrayOfKeyValueEntityOfstringstring additionalInfo;
/**
* Gets the value of the typeId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTypeId() {
return typeId;
}
/**
* Sets the value of the typeId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTypeId(Integer value) {
this.typeId = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setId(Long value) {
this.id = value;
}
/**
* Gets the value of the severity property.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getSeverity() {
return severity;
}
/**
* Sets the value of the severity property.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setSeverity(Short value) {
this.severity = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the additionalInfo property.
*
* @return
* possible object is
* {@link ArrayOfKeyValueEntityOfstringstring }
*
*/
public ArrayOfKeyValueEntityOfstringstring getAdditionalInfo() {
return additionalInfo;
}
/**
* Sets the value of the additionalInfo property.
*
* @param value
* allowed object is
* {@link ArrayOfKeyValueEntityOfstringstring }
*
*/
public void setAdditionalInfo(ArrayOfKeyValueEntityOfstringstring value) {
this.additionalInfo = value;
}
}