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.cdn; import com.fasterxml.jackson.annotation.JsonProperty;
The ResourcesResponseEndpointsItemCustomDomainsItem model.
/** * The ResourcesResponseEndpointsItemCustomDomainsItem model. */
public class ResourcesResponseEndpointsItemCustomDomainsItem {
The id property.
/** * The id property. */
@JsonProperty(value = "id") private String id;
The name property.
/** * The name property. */
@JsonProperty(value = "name") private String name;
The endpointId property.
/** * The endpointId property. */
@JsonProperty(value = "endpointId") private String endpointId;
The history property.
/** * The history property. */
@JsonProperty(value = "history") private Boolean history;
Get the id value.
Returns:the id value
/** * Get the id value. * * @return the id value */
public String id() { return this.id; }
Set the id value.
Params:
  • id – the id value to set
Returns:the ResourcesResponseEndpointsItemCustomDomainsItem object itself.
/** * Set the id value. * * @param id the id value to set * @return the ResourcesResponseEndpointsItemCustomDomainsItem object itself. */
public ResourcesResponseEndpointsItemCustomDomainsItem withId(String id) { this.id = id; return this; }
Get the name value.
Returns:the name value
/** * Get the name value. * * @return the name value */
public String name() { return this.name; }
Set the name value.
Params:
  • name – the name value to set
Returns:the ResourcesResponseEndpointsItemCustomDomainsItem object itself.
/** * Set the name value. * * @param name the name value to set * @return the ResourcesResponseEndpointsItemCustomDomainsItem object itself. */
public ResourcesResponseEndpointsItemCustomDomainsItem withName(String name) { this.name = name; return this; }
Get the endpointId value.
Returns:the endpointId value
/** * Get the endpointId value. * * @return the endpointId value */
public String endpointId() { return this.endpointId; }
Set the endpointId value.
Params:
  • endpointId – the endpointId value to set
Returns:the ResourcesResponseEndpointsItemCustomDomainsItem object itself.
/** * Set the endpointId value. * * @param endpointId the endpointId value to set * @return the ResourcesResponseEndpointsItemCustomDomainsItem object itself. */
public ResourcesResponseEndpointsItemCustomDomainsItem withEndpointId(String endpointId) { this.endpointId = endpointId; return this; }
Get the history value.
Returns:the history value
/** * Get the history value. * * @return the history value */
public Boolean history() { return this.history; }
Set the history value.
Params:
  • history – the history value to set
Returns:the ResourcesResponseEndpointsItemCustomDomainsItem object itself.
/** * Set the history value. * * @param history the history value to set * @return the ResourcesResponseEndpointsItemCustomDomainsItem object itself. */
public ResourcesResponseEndpointsItemCustomDomainsItem withHistory(Boolean history) { this.history = history; return this; } }