CSVOutput
Last updated
Last updated
Name | Type | Description | Notes |
---|---|---|---|
func NewCSVOutput() *CSVOutput
NewCSVOutput instantiates a new CSVOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewCSVOutputWithDefaults() *CSVOutput
NewCSVOutputWithDefaults instantiates a new CSVOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *CSVOutput) GetQuoteFields() string
GetQuoteFields returns the QuoteFields field if non-nil, zero value otherwise.
func (o *CSVOutput) GetQuoteFieldsOk() (*string, bool)
GetQuoteFieldsOk returns a tuple with the QuoteFields field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVOutput) SetQuoteFields(v string)
SetQuoteFields sets QuoteFields field to given value.
func (o *CSVOutput) HasQuoteFields() bool
HasQuoteFields returns a boolean if a field has been set.
func (o *CSVOutput) GetQuoteEscapeCharacter() string
GetQuoteEscapeCharacter returns the QuoteEscapeCharacter field if non-nil, zero value otherwise.
func (o *CSVOutput) GetQuoteEscapeCharacterOk() (*string, bool)
GetQuoteEscapeCharacterOk returns a tuple with the QuoteEscapeCharacter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVOutput) SetQuoteEscapeCharacter(v string)
SetQuoteEscapeCharacter sets QuoteEscapeCharacter field to given value.
func (o *CSVOutput) HasQuoteEscapeCharacter() bool
HasQuoteEscapeCharacter returns a boolean if a field has been set.
func (o *CSVOutput) GetRecordDelimiter() string
GetRecordDelimiter returns the RecordDelimiter field if non-nil, zero value otherwise.
func (o *CSVOutput) GetRecordDelimiterOk() (*string, bool)
GetRecordDelimiterOk returns a tuple with the RecordDelimiter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVOutput) SetRecordDelimiter(v string)
SetRecordDelimiter sets RecordDelimiter field to given value.
func (o *CSVOutput) HasRecordDelimiter() bool
HasRecordDelimiter returns a boolean if a field has been set.
func (o *CSVOutput) GetFieldDelimiter() interface{}
GetFieldDelimiter returns the FieldDelimiter field if non-nil, zero value otherwise.
func (o *CSVOutput) GetFieldDelimiterOk() (*interface{}, bool)
GetFieldDelimiterOk returns a tuple with the FieldDelimiter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVOutput) SetFieldDelimiter(v interface{})
SetFieldDelimiter sets FieldDelimiter field to given value.
func (o *CSVOutput) HasFieldDelimiter() bool
HasFieldDelimiter returns a boolean if a field has been set.
func (o *CSVOutput) SetFieldDelimiterNil(b bool)
SetFieldDelimiterNil sets the value for FieldDelimiter to be an explicit nil
func (o *CSVOutput) UnsetFieldDelimiter()
UnsetFieldDelimiter ensures that no value is present for FieldDelimiter, not even an explicit nil
func (o *CSVOutput) GetQuoteCharacter() string
GetQuoteCharacter returns the QuoteCharacter field if non-nil, zero value otherwise.
func (o *CSVOutput) GetQuoteCharacterOk() (*string, bool)
GetQuoteCharacterOk returns a tuple with the QuoteCharacter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CSVOutput) SetQuoteCharacter(v string)
SetQuoteCharacter sets QuoteCharacter field to given value.
func (o *CSVOutput) HasQuoteCharacter() bool
HasQuoteCharacter returns a boolean if a field has been set.
QuoteFields
Pointer to string
<p>Indicates whether to use quotation marks around output fields. </p> <ul> <li> <p> `ALWAYS`: Always use quotation marks for output fields.</p> </li> <li> <p> `ASNEEDED`: Use quotation marks for output fields when needed.</p> </li> </ul>
[optional]
QuoteEscapeCharacter
Pointer to string
The single character used for escaping the quote character inside an already escaped value.
[optional]
RecordDelimiter
Pointer to string
A single character used to separate individual records in the output. Instead of the default value, you can specify an arbitrary delimiter.
[optional]
FieldDelimiter
Pointer to interface{}
The value used to separate individual fields in a record. You can specify an arbitrary delimiter.
[optional]
QuoteCharacter
Pointer to string
A single character used for escaping when the field delimiter is part of the value. For example, if the value is `a, b`, IONOS S3 Object Storage wraps this field value in quotation marks, as follows: `" a , b "`.
[optional]