com.microsoft.store.partnercenter.models.servicerequests.ServiceRequestContact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.
package com.microsoft.store.partnercenter.models.servicerequests;
/**
* Represents a Contact Profile
*/
public class ServiceRequestContact
{
/**
* Gets or sets the organization profile
*/
private ServiceRequestOrganization __Organization;
public ServiceRequestOrganization getOrganization()
{
return __Organization;
}
public void setOrganization(ServiceRequestOrganization value)
{
__Organization = value;
}
/**
* Gets or sets the contact identifier.
*/
private String __ContactId;
public String getContactId()
{
return __ContactId;
}
public void setContactId(String value)
{
__ContactId = value;
}
/**
* Gets or sets the name of the contact.
*/
private String __LastName;
public String getLastName()
{
return __LastName;
}
public void setLastName(String value)
{
__LastName = value;
}
/**
* Gets or sets the name of the contact.
*/
private String __FirstName;
public String getFirstName()
{
return __FirstName;
}
public void setFirstName(String value)
{
__FirstName = value;
}
/**
* Gets or sets the email id
*/
private String __Email;
public String getEmail()
{
return __Email;
}
public void setEmail(String value)
{
__Email = value;
}
/**
* Gets or sets the phone number
*/
private String __PhoneNumber;
public String getPhoneNumber()
{
return __PhoneNumber;
}
public void setPhoneNumber(String value)
{
__PhoneNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy