com.tenduke.events.api.model.object.OrganizationInvitationSent 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.object;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.tenduke.events.api.model.data.ErrorInfoFields;
import com.tenduke.events.api.model.data.RequestFields;
import com.tenduke.events.api.model.data.TimeFields;
import com.tenduke.events.api.model.data.UserIdFields;
import com.tenduke.events.api.model.data.OrganizationInvitationFields;
/**
* Event occurring when organization invitation has been sent.
* @author roope
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface OrganizationInvitationSent extends
OrganizationInvitationFields,
UserIdFields,
ErrorInfoFields,
RequestFields,
TimeFields {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy