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

com.microsoft.store.partnercenter.models.users.CustomerUser Maven / Gradle / Ivy

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

package com.microsoft.store.partnercenter.models.users;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CustomerUser extends User 
{
    /**
     * Gets or sets usage location, the location where user intends to use the license.
     */
	@JsonProperty("usageLocation")
    private String usageLocation;
	
    public String getUsageLocation()
    {
        return usageLocation;
    }

    public void setUsageLocation( String value )
    {
    	usageLocation = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy