/**
* 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.
*/
public class SiteSealInner {
/**
* HTML snippet.
*/
@JsonProperty(value = "html", required = true)
private String html;
/**
* Get the html value.
*
* @return the html value
*/
public String html() {
return this.html;
}
/**
* Set the html value.
*
* @param html the html value to set
* @return the SiteSealInner object itself.
*/
public SiteSealInner withHtml(String html) {
this.html = html;
return this;
}
}