All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.optionfactory.whatsapp.dto.webhook.Error Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.webhook;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The type Error.
 */
public record Error(

        @JsonProperty("code")
        int code,

        @JsonProperty("title")
        String title,

        @JsonProperty("message")
        String message,

        @JsonProperty("error_data")
        ErrorData errorData,
        @JsonProperty("href")
        String href
) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy