com.mozu.api.events.handlers.DiscountEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.events.handlers;
import com.mozu.api.ApiContext;
import com.mozu.api.contracts.event.Event;
import com.mozu.api.events.model.EventHandlerStatus;
public interface DiscountEventHandler {
public EventHandlerStatus created(ApiContext apiContext, Event event);
public EventHandlerStatus deleted(ApiContext apiContext, Event event);
public EventHandlerStatus expired(ApiContext apiContext, Event event);
public EventHandlerStatus updated(ApiContext apiContext, Event event);
}