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

com.microsoft.store.partnercenter.models.partners.LegalBusinessProfile Maven / Gradle / Ivy

There is a newer version: 1.15.3
Show newest version
// 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.partners;

import com.microsoft.store.partnercenter.models.Address;
import com.microsoft.store.partnercenter.models.Contact;
import com.microsoft.store.partnercenter.models.ResourceBaseWithLinks;
import com.microsoft.store.partnercenter.models.StandardResourceLinks;

/**
 * The legal business profile.
 */
public class LegalBusinessProfile
    extends ResourceBaseWithLinks
{
    /**
     * Initializes a new instance of the LegalBusinessProfile class.
     */
    public LegalBusinessProfile()
    {
    }

    /**
     * Gets or sets the legal company name.
     */
    private String __CompanyName;

    public String getCompanyName()
    {
        return __CompanyName;
    }

    public void setCompanyName(String value)
    {
        __CompanyName = value;
    }

    /**
     * Gets or sets the address.
     */
    private Address __Address;

    public Address getAddress()
    {
        return __Address;
    }

    public void setAddress(Address value)
    {
        __Address = value;
    }

    /**
     * Gets or sets the primary contact.
     */
    private Contact __PrimaryContact;

    public Contact getPrimaryContact()
    {
        return __PrimaryContact;
    }

    public void setPrimaryContact(Contact value)
    {
        __PrimaryContact = value;
    }

    /**
     * Gets or sets the company approver address.
     */
    private Address __CompanyApproverAddress;

    public Address getCompanyApproverAddress()
    {
        return __CompanyApproverAddress;
    }

    public void setCompanyApproverAddress(Address value)
    {
        __CompanyApproverAddress = value;
    }

    /**
     * Gets or sets the company approver email.
     */
    private String __CompanyApproverEmail;

    public String getCompanyApproverEmail()
    {
        return __CompanyApproverEmail;
    }

    public void setCompanyApproverEmail(String value)
    {
        __CompanyApproverEmail = value;
    }

    /**
     * Gets or sets the vetting status.
     */
    private VettingStatus __VettingStatus;

    public VettingStatus getVettingStatus()
    {
        return __VettingStatus;
    }

    public void setVettingStatus(VettingStatus value)
    {
    	__VettingStatus = value;
    }

    /**
     *  Gets or sets the vetting sub status.
     */
    private VettingSubStatus __VettingSubStatus;

    public VettingSubStatus getVettingSubStatus()
    {
        return __VettingSubStatus;
    }

    public void setVettingSubStatus(VettingSubStatus value)
    {
    	__VettingSubStatus = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy