CreateTopicBody.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.servicebus.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
/** The CreateTopicBody model. */
@JacksonXmlRootElement(localName = "entry", namespace = "http://www.w3.org/2005/Atom")
@Fluent
public final class CreateTopicBody {
/*
* TopicDescription for the new topic.
*/
@JacksonXmlProperty(localName = "content", namespace = "http://www.w3.org/2005/Atom")
private CreateTopicBodyContent content;
/**
* Get the content property: TopicDescription for the new topic.
*
* @return the content value.
*/
public CreateTopicBodyContent getContent() {
return this.content;
}
/**
* Set the content property: TopicDescription for the new topic.
*
* @param content the content value to set.
* @return the CreateTopicBody object itself.
*/
public CreateTopicBody setContent(CreateTopicBodyContent content) {
this.content = content;
return this;
}
}