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