com.sportradar.mts.sdk.api.enums.TicketCancelAcceptance Maven / Gradle / Ivy
/*
* Copyright (C) Sportradar AG. See LICENSE for full license governing this code
*/
package com.sportradar.mts.sdk.api.enums;
/**
* Possible values of ticket cancel acceptance
*/
@SuppressWarnings("java:S115") // Constant names should comply with a naming convention
public enum TicketCancelAcceptance {
/**
* Cancelled
*/
Cancelled,
/**
* NotCancelled
*/
NotCancelled,
}