All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.checkout.payments.sender.ResponseAlternativeSender Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.payments.sender;

import com.checkout.common.CheckoutUtils;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.apache.commons.lang3.EnumUtils;

import java.util.HashMap;

@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public final class ResponseAlternativeSender extends HashMap implements Sender {

    public SenderType getType() {
        return EnumUtils.getEnumIgnoreCase(SenderType.class, (String) get(CheckoutUtils.TYPE));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy