com.tenduke.events.api.model.data.LicenseAssignmentFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-api Show documentation
Show all versions of events-api Show documentation
Objects and interfaces describing data communicated in the 10Duke Event Data system API
package com.tenduke.events.api.model.data;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Event data fields for license operations that contain assignment data.
* @author roope
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface LicenseAssignmentFields extends LicenseFields {
/**
* Gets unique id of the object.
* @return The assignment identifier.
*/
String getAssignmentId();
/**
* Gets reservation type defined for the assignment.
* @return Reservation type.
*/
String getReservationType();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy