com.microsoft.bingads.v13.customermanagement.CustomerRole 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.XmlType;
/**
* Java class for CustomerRole complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomerRole", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"roleId",
"customerId",
"accountIds",
"linkedAccountIds",
"customerLinkPermission"
})
public class CustomerRole {
@XmlElement(name = "RoleId")
protected Integer roleId;
@XmlElement(name = "CustomerId")
protected Long customerId;
@XmlElement(name = "AccountIds", nillable = true)
protected ArrayOflong accountIds;
@XmlElement(name = "LinkedAccountIds", nillable = true)
protected ArrayOflong linkedAccountIds;
@XmlElement(name = "CustomerLinkPermission", nillable = true)
protected String customerLinkPermission;
/**
* Gets the value of the roleId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRoleId() {
return roleId;
}
/**
* Sets the value of the roleId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRoleId(Integer value) {
this.roleId = value;
}
/**
* Gets the value of the customerId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCustomerId() {
return customerId;
}
/**
* Sets the value of the customerId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCustomerId(Long value) {
this.customerId = value;
}
/**
* Gets the value of the accountIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getAccountIds() {
return accountIds;
}
/**
* Sets the value of the accountIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setAccountIds(ArrayOflong value) {
this.accountIds = value;
}
/**
* Gets the value of the linkedAccountIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getLinkedAccountIds() {
return linkedAccountIds;
}
/**
* Sets the value of the linkedAccountIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setLinkedAccountIds(ArrayOflong value) {
this.linkedAccountIds = value;
}
/**
* Gets the value of the customerLinkPermission property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerLinkPermission() {
return customerLinkPermission;
}
/**
* Sets the value of the customerLinkPermission property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerLinkPermission(String value) {
this.customerLinkPermission = value;
}
}