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

cn.authing.sdk.java.dto.WebhookCategoryDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class WebhookCategoryDto {
    /**
     * Webhook 类型名称
     */
    @JsonProperty("name")
    private String name;
    /**
     * Webhook 类型英文名称
     */
    @JsonProperty("nameEn")
    private String nameEn;
    /**
     * Webhook 类型
     */
    @JsonProperty("value")
    private String value;

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }

    public String getNameEn() {
        return nameEn;
    }
    public void setNameEn(String nameEn) {
        this.nameEn = nameEn;
    }

    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy