
com.yodlee.api.model.cobrand.CobrandNotificationEvent Maven / Gradle / Ivy
/**
* Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
*
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
package com.yodlee.api.model.cobrand;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.yodlee.api.model.cobrand.enums.CobrandNotificationEventType;
import io.swagger.annotations.ApiModelProperty;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({"callbackUrl", "name"})
public class CobrandNotificationEvent extends AbstractCobrandNotificationEvent {
@ApiModelProperty(value = "Name of the event for which the customers must subscribe to receive notifications."
+ "
" + "Valid Value: Notification Events Name"//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET cobrand/config/notifications/events
"//
+ "
"//
+ "Applicable Values
"//
)
@JsonProperty("name")
private CobrandNotificationEventType CobrandNotificationEventName;
/**
* Name of the event for which the customers must subscribe to receive notifications.
* Valid Value: Notification Events Name
*
* Endpoints:
*
* - GET cobrand/config/notifications/events
*
* Applicable Values
*
* @return Cobrand notification event type name
*/
@JsonProperty("name")
public CobrandNotificationEventType getName() {
return CobrandNotificationEventName;
}
public void setCobrandNotificationEventName(CobrandNotificationEventType CobrandNotificationEventName) {
this.CobrandNotificationEventName = CobrandNotificationEventName;
}
@Override
public String toString() {
return "CreateCobrandNotificationEvent [callbackUrl=" + callbackUrl + ", CobrandNotificationEventName="
+ CobrandNotificationEventName + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy