JsonTextConfiguration.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.storage.blob.implementation.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;

/**
 * json text configuration.
 */
@JacksonXmlRootElement(localName = "JsonTextConfiguration")
@Fluent
public final class JsonTextConfiguration {
    /*
     * record separator
     */
    @JsonProperty(value = "RecordSeparator", required = true)
    private String recordSeparator;

    /**
     * Get the recordSeparator property: record separator.
     *
     * @return the recordSeparator value.
     */
    public String getRecordSeparator() {
        return this.recordSeparator;
    }

    /**
     * Set the recordSeparator property: record separator.
     *
     * @param recordSeparator the recordSeparator value to set.
     * @return the JsonTextConfiguration object itself.
     */
    public JsonTextConfiguration setRecordSeparator(String recordSeparator) {
        this.recordSeparator = recordSeparator;
        return this;
    }
}