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

com.volcengine.model.tls.producer.Attempt Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.tls.producer;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Attempt {
    boolean success;
    String requestId;
    String errorCode;
    String errorMessage;
    int httpCode = -1;

    public Attempt(boolean success, String requestId, String errorCode, String errorMessage) {
        this.success = success;
        this.requestId = requestId;
        this.errorCode = errorCode;
        this.errorMessage = errorMessage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy