/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ package dev.plexapi.sdk.models.operations; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import dev.plexapi.sdk.utils.Utils; import java.lang.Override; import java.lang.String; import java.util.Objects; import java.util.Optional; public class GetLibraryItemsLocation { @JsonInclude(Include.NON_ABSENT) @JsonProperty("path") private Optional path; @JsonCreator public GetLibraryItemsLocation( @JsonProperty("path") Optional path) { Utils.checkNotNull(path, "path"); this.path = path; } public GetLibraryItemsLocation() { this(Optional.empty()); } @JsonIgnore public Optional path() { return path; } public final static Builder builder() { return new Builder(); } public GetLibraryItemsLocation withPath(String path) { Utils.checkNotNull(path, "path"); this.path = Optional.ofNullable(path); return this; } public GetLibraryItemsLocation withPath(Optional path) { Utils.checkNotNull(path, "path"); this.path = path; return this; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } GetLibraryItemsLocation other = (GetLibraryItemsLocation) o; return Objects.deepEquals(this.path, other.path); } @Override public int hashCode() { return Objects.hash( path); } @Override public String toString() { return Utils.toString(GetLibraryItemsLocation.class, "path", path); } public final static class Builder { private Optional path = Optional.empty(); private Builder() { // force use of static builder() method } public Builder path(String path) { Utils.checkNotNull(path, "path"); this.path = Optional.ofNullable(path); return this; } public Builder path(Optional path) { Utils.checkNotNull(path, "path"); this.path = path; return this; } public GetLibraryItemsLocation build() { return new GetLibraryItemsLocation( path); } } }