com.volcengine.model.tls.producer.Attempt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
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