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

com.github.jamesnetherton.zulip.client.api.server.response.CreateProfileFieldApiResponse Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.server.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;

/**
 * Zulip API response class for creating a custom profile field.
 *
 * @see https://zulip.com/api/create-custom-profile-field#response
 */
public class CreateProfileFieldApiResponse extends ZulipApiResponse {

    @JsonProperty
    private long id;

    public long getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy