![JAR search and dependency download from the Maven repository](/logo.png)
com.ticketmaster.api.discovery.operation.ByIdOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discovery-java Show documentation
Show all versions of discovery-java Show documentation
Ticketmaster Discovery API SDK - Java
The newest version!
package com.ticketmaster.api.discovery.operation;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
@ToString
@EqualsAndHashCode(callSuper = true)
public class ByIdOperation extends Operation {
@Getter
protected String id;
public ByIdOperation id(String id) {
this.id = id;
return this;
}
@Override
protected ByIdOperation getThis() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy