com.adobe.target.delivery.v1.model.NotificationResponse Maven / Gradle / Ivy
/*
* Copyright 2021 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*
* NOTE: This is an auto generated file. Do not edit directly.
*/
package com.adobe.target.delivery.v1.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/** Notification response. Contains the result of a processed notification. */
public class NotificationResponse {
@JsonProperty("id")
private String id;
@JsonProperty("trace")
private Map trace = new HashMap<>();
public NotificationResponse id(String id) {
this.id = id;
return this;
}
/**
* Notification id which indicates that the notification was processed successfully.
*
* @return id
*/
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public NotificationResponse trace(Map trace) {
this.trace = trace;
return this;
}
public NotificationResponse putTraceItem(String key, Object traceItem) {
if (this.trace == null) {
this.trace = new HashMap<>();
}
this.trace.put(key, traceItem);
return this;
}
/**
* The object containing all trace data for the request, only present if the trace token was
* provided in the request.
*
* @return trace
*/
public Map getTrace() {
return trace;
}
public void setTrace(Map trace) {
this.trace = trace;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NotificationResponse notificationResponse = (NotificationResponse) o;
return Objects.equals(this.id, notificationResponse.id)
&& Objects.equals(this.trace, notificationResponse.trace);
}
@Override
public int hashCode() {
return Objects.hash(id, trace);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NotificationResponse {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" trace: ").append(toIndentedString(trace)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy