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

com.microsoft.store.partnercenter.models.Profile Maven / Gradle / Ivy

// -----------------------------------------------------------------------
// 
//      Copyright (c) Microsoft Corporation. All rights reserved.
// 
// -----------------------------------------------------------------------

package com.microsoft.store.partnercenter.models;

/**
 * Common profile template profile type
 */
public abstract class Profile
    extends ResourceBase
{
    /**
     * Gets or sets the profile identifier.
     */
    private String id;

    public String getId()
    {
        return id;
    }

    public void setId( String value )
    {
        id = value;
    }

    /**
     * Gets or sets the email.
     */
    private String email;

    public String getEmail()
    {
        return email;
    }

    public void setEmail( String value )
    {
        email = value;
    }

    /**
     * Gets or sets the country.
     */
    private String country;

    public String getCountry()
    {
        return country;
    }

    public void setCountry( String value )
    {
        country = value;
    }

    /**
     * Gets or sets the region.
     */
    private String region;

    public String getRegion()
    {
        return region;
    }

    public void setRegion( String value )
    {
        region = value;
    }

    /**
     * Gets or sets the language.
     */
    private String language;

    public String getLanguage()
    {
        return language;
    }

    public void setLanguage( String value )
    {
        language = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy