com.capitalone.dashboard.model.QCollectorItemMetadata 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.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QCollectorItemMetadata is a Querydsl query type for CollectorItemMetadata
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QCollectorItemMetadata extends EntityPathBase {
private static final long serialVersionUID = -1982427667L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCollectorItemMetadata collectorItemMetadata = new QCollectorItemMetadata("collectorItemMetadata");
public final QBaseModel _super;
//inherited
public final StringPath clientReference;
public final org.bson.types.QObjectId collectorId;
public final org.bson.types.QObjectId collectorItemId;
public final EnumPath collectorType = createEnum("collectorType", CollectorType.class);
// inherited
public final org.bson.types.QObjectId id;
public final NumberPath lastUpdated = createNumber("lastUpdated", Long.class);
public final DateTimePath lastUpdatedTime = createDateTime("lastUpdatedTime", java.util.Date.class);
// custom
public final ext.java.util.QMap metadata = new ext.java.util.QMap(forProperty("metadata"));
//inherited
public final DateTimePath upsertTime;
public QCollectorItemMetadata(String variable) {
this(CollectorItemMetadata.class, forVariable(variable), INITS);
}
public QCollectorItemMetadata(Path extends CollectorItemMetadata> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCollectorItemMetadata(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCollectorItemMetadata(PathMetadata metadata, PathInits inits) {
this(CollectorItemMetadata.class, metadata, inits);
}
public QCollectorItemMetadata(Class extends CollectorItemMetadata> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.collectorId = inits.isInitialized("collectorId") ? new org.bson.types.QObjectId(forProperty("collectorId")) : null;
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy