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

com.spring.boxes.webhook.starter.meta.NotifyConfigure Maven / Gradle / Ivy

The newest version!
package com.spring.boxes.webhook.starter.meta;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;

import java.io.Serializable;

@Data
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties("spring.boxes.webhook")
public class NotifyConfigure implements Serializable {

    @NestedConfigurationProperty
    private DingTalkConfig dingTalk;

    @NestedConfigurationProperty
    private FeiShuConfig feiShu;

    @NestedConfigurationProperty
    private WechatConfig corpWechat;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy