/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.appservice.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Site seal request.
*/
public class SiteSealRequestInner {
/**
* Theme.
*/
@JsonProperty(value = "lightTheme")
private Boolean lightTheme;
/**
* Locale.
*/
@JsonProperty(value = "locale")
private String locale;
/**
* Get the lightTheme value.
*
* @return the lightTheme value
*/
public Boolean lightTheme() {
return this.lightTheme;
}
/**
* Set the lightTheme value.
*
* @param lightTheme the lightTheme value to set
* @return the SiteSealRequestInner object itself.
*/
public SiteSealRequestInner withLightTheme(Boolean lightTheme) {
this.lightTheme = lightTheme;
return this;
}
/**
* Get the locale value.
*
* @return the locale value
*/
public String locale() {
return this.locale;
}
/**
* Set the locale value.
*
* @param locale the locale value to set
* @return the SiteSealRequestInner object itself.
*/
public SiteSealRequestInner withLocale(String locale) {
this.locale = locale;
return this;
}
}