com.nutanix.dp1.vmm.common.v1.response.ApiLink Maven / Gradle / Ivy
/*
* Generated file ..
*
* Product version: 4.0.3-alpha-1
*
* Part of the Nutanix Vmm Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.vmm.common.v1.response;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.AccessLevel;
import com.nutanix.devplatform.models.PrettyModeViews.*;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.nutanix.dp1.vmm.deserializers.VmmObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.vmm.deserializers.VmmDeserializerUtils.*;
/**
* A HATEOAS style link for the response. Each link contains a user friendly name identifying the link and an address for retrieving the particular resource.
*
*/
@Data
@lombok.extern.slf4j.Slf4j
public class ApiLink implements java.io.Serializable, VmmObjectTypeTypedObject {
public ApiLink() {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
}
@lombok.Builder(builderMethodName = "ApiLinkBuilder")
public ApiLink(String href, String rel) {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
this.setHref(href);
this.setRel(rel);
}
protected String initialize$objectType() {
return "common.v1.response.ApiLink";
}
protected String initialize$fqObjectType() {
return "common.v1.r0.a3.response.ApiLink";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
/**
* The URL at which the entity described by the link can be accessed.
*/
@JsonProperty("href")
public String href = null;
/**
* A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
*/
@JsonProperty("rel")
public String rel = null;
@Getter
@JsonView({StandardView.class})
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
protected final Map $unknownFields;
}