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

com.pulumi.azurenative.logic.outputs.EdifactFramingSettingsResponse Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.logic.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class EdifactFramingSettingsResponse {
    /**
     * @return The character encoding.
     * 
     */
    private @Nullable String characterEncoding;
    /**
     * @return The EDIFACT frame setting characterSet.
     * 
     */
    private String characterSet;
    /**
     * @return The component separator.
     * 
     */
    private Integer componentSeparator;
    /**
     * @return The data element separator.
     * 
     */
    private Integer dataElementSeparator;
    /**
     * @return The EDIFACT frame setting decimal indicator.
     * 
     */
    private String decimalPointIndicator;
    /**
     * @return The protocol version.
     * 
     */
    private Integer protocolVersion;
    /**
     * @return The release indicator.
     * 
     */
    private Integer releaseIndicator;
    /**
     * @return The repetition separator.
     * 
     */
    private Integer repetitionSeparator;
    /**
     * @return The segment terminator.
     * 
     */
    private Integer segmentTerminator;
    /**
     * @return The EDIFACT frame setting segment terminator suffix.
     * 
     */
    private String segmentTerminatorSuffix;
    /**
     * @return The service code list directory version.
     * 
     */
    private @Nullable String serviceCodeListDirectoryVersion;

    private EdifactFramingSettingsResponse() {}
    /**
     * @return The character encoding.
     * 
     */
    public Optional characterEncoding() {
        return Optional.ofNullable(this.characterEncoding);
    }
    /**
     * @return The EDIFACT frame setting characterSet.
     * 
     */
    public String characterSet() {
        return this.characterSet;
    }
    /**
     * @return The component separator.
     * 
     */
    public Integer componentSeparator() {
        return this.componentSeparator;
    }
    /**
     * @return The data element separator.
     * 
     */
    public Integer dataElementSeparator() {
        return this.dataElementSeparator;
    }
    /**
     * @return The EDIFACT frame setting decimal indicator.
     * 
     */
    public String decimalPointIndicator() {
        return this.decimalPointIndicator;
    }
    /**
     * @return The protocol version.
     * 
     */
    public Integer protocolVersion() {
        return this.protocolVersion;
    }
    /**
     * @return The release indicator.
     * 
     */
    public Integer releaseIndicator() {
        return this.releaseIndicator;
    }
    /**
     * @return The repetition separator.
     * 
     */
    public Integer repetitionSeparator() {
        return this.repetitionSeparator;
    }
    /**
     * @return The segment terminator.
     * 
     */
    public Integer segmentTerminator() {
        return this.segmentTerminator;
    }
    /**
     * @return The EDIFACT frame setting segment terminator suffix.
     * 
     */
    public String segmentTerminatorSuffix() {
        return this.segmentTerminatorSuffix;
    }
    /**
     * @return The service code list directory version.
     * 
     */
    public Optional serviceCodeListDirectoryVersion() {
        return Optional.ofNullable(this.serviceCodeListDirectoryVersion);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(EdifactFramingSettingsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String characterEncoding;
        private String characterSet;
        private Integer componentSeparator;
        private Integer dataElementSeparator;
        private String decimalPointIndicator;
        private Integer protocolVersion;
        private Integer releaseIndicator;
        private Integer repetitionSeparator;
        private Integer segmentTerminator;
        private String segmentTerminatorSuffix;
        private @Nullable String serviceCodeListDirectoryVersion;
        public Builder() {}
        public Builder(EdifactFramingSettingsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.characterEncoding = defaults.characterEncoding;
    	      this.characterSet = defaults.characterSet;
    	      this.componentSeparator = defaults.componentSeparator;
    	      this.dataElementSeparator = defaults.dataElementSeparator;
    	      this.decimalPointIndicator = defaults.decimalPointIndicator;
    	      this.protocolVersion = defaults.protocolVersion;
    	      this.releaseIndicator = defaults.releaseIndicator;
    	      this.repetitionSeparator = defaults.repetitionSeparator;
    	      this.segmentTerminator = defaults.segmentTerminator;
    	      this.segmentTerminatorSuffix = defaults.segmentTerminatorSuffix;
    	      this.serviceCodeListDirectoryVersion = defaults.serviceCodeListDirectoryVersion;
        }

        @CustomType.Setter
        public Builder characterEncoding(@Nullable String characterEncoding) {

            this.characterEncoding = characterEncoding;
            return this;
        }
        @CustomType.Setter
        public Builder characterSet(String characterSet) {
            if (characterSet == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "characterSet");
            }
            this.characterSet = characterSet;
            return this;
        }
        @CustomType.Setter
        public Builder componentSeparator(Integer componentSeparator) {
            if (componentSeparator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "componentSeparator");
            }
            this.componentSeparator = componentSeparator;
            return this;
        }
        @CustomType.Setter
        public Builder dataElementSeparator(Integer dataElementSeparator) {
            if (dataElementSeparator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "dataElementSeparator");
            }
            this.dataElementSeparator = dataElementSeparator;
            return this;
        }
        @CustomType.Setter
        public Builder decimalPointIndicator(String decimalPointIndicator) {
            if (decimalPointIndicator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "decimalPointIndicator");
            }
            this.decimalPointIndicator = decimalPointIndicator;
            return this;
        }
        @CustomType.Setter
        public Builder protocolVersion(Integer protocolVersion) {
            if (protocolVersion == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "protocolVersion");
            }
            this.protocolVersion = protocolVersion;
            return this;
        }
        @CustomType.Setter
        public Builder releaseIndicator(Integer releaseIndicator) {
            if (releaseIndicator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "releaseIndicator");
            }
            this.releaseIndicator = releaseIndicator;
            return this;
        }
        @CustomType.Setter
        public Builder repetitionSeparator(Integer repetitionSeparator) {
            if (repetitionSeparator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "repetitionSeparator");
            }
            this.repetitionSeparator = repetitionSeparator;
            return this;
        }
        @CustomType.Setter
        public Builder segmentTerminator(Integer segmentTerminator) {
            if (segmentTerminator == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "segmentTerminator");
            }
            this.segmentTerminator = segmentTerminator;
            return this;
        }
        @CustomType.Setter
        public Builder segmentTerminatorSuffix(String segmentTerminatorSuffix) {
            if (segmentTerminatorSuffix == null) {
              throw new MissingRequiredPropertyException("EdifactFramingSettingsResponse", "segmentTerminatorSuffix");
            }
            this.segmentTerminatorSuffix = segmentTerminatorSuffix;
            return this;
        }
        @CustomType.Setter
        public Builder serviceCodeListDirectoryVersion(@Nullable String serviceCodeListDirectoryVersion) {

            this.serviceCodeListDirectoryVersion = serviceCodeListDirectoryVersion;
            return this;
        }
        public EdifactFramingSettingsResponse build() {
            final var _resultValue = new EdifactFramingSettingsResponse();
            _resultValue.characterEncoding = characterEncoding;
            _resultValue.characterSet = characterSet;
            _resultValue.componentSeparator = componentSeparator;
            _resultValue.dataElementSeparator = dataElementSeparator;
            _resultValue.decimalPointIndicator = decimalPointIndicator;
            _resultValue.protocolVersion = protocolVersion;
            _resultValue.releaseIndicator = releaseIndicator;
            _resultValue.repetitionSeparator = repetitionSeparator;
            _resultValue.segmentTerminator = segmentTerminator;
            _resultValue.segmentTerminatorSuffix = segmentTerminatorSuffix;
            _resultValue.serviceCodeListDirectoryVersion = serviceCodeListDirectoryVersion;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy