com.capitalone.dashboard.model.QCollectionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import static com.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
/**
* QCollectionError is a Querydsl query type for CollectionError
*/
@Generated("com.mysema.query.codegen.EmbeddableSerializer")
public class QCollectionError extends BeanPath {
private static final long serialVersionUID = -2126592536L;
public static final QCollectionError collectionError = new QCollectionError("collectionError");
public final StringPath errorCode = createString("errorCode");
public final StringPath errorMessage = createString("errorMessage");
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public QCollectionError(String variable) {
super(CollectionError.class, forVariable(variable));
}
public QCollectionError(Path extends CollectionError> path) {
super(path.getType(), path.getMetadata());
}
public QCollectionError(PathMetadata> metadata) {
super(CollectionError.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy