Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ class EdifactValidationOverride
attr_accessor :enforce_character_set

# @return [Boolean] The value indicating whether to validate EDI types.
attr_accessor :validate_edi_types
attr_accessor :validate_editypes

# @return [Boolean] The value indicating whether to validate XSD types.
attr_accessor :validate_xsd_types
attr_accessor :validate_xsdtypes

# @return [Boolean] The value indicating whether to allow leading and
# trailing spaces and zeroes.
Expand Down Expand Up @@ -66,16 +66,16 @@ def self.mapper()
name: 'Boolean'
}
},
validate_edi_types: {
validate_editypes: {
required: true,
serialized_name: 'validateEdiTypes',
serialized_name: 'validateEDITypes',
type: {
name: 'Boolean'
}
},
validate_xsd_types: {
validate_xsdtypes: {
required: true,
serialized_name: 'validateXsdTypes',
serialized_name: 'validateXSDTypes',
type: {
name: 'Boolean'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class EdifactValidationSettings

# @return [Boolean] The value indicating whether to Whether to validate
# EDI types.
attr_accessor :validate_edi_types
attr_accessor :validate_editypes

# @return [Boolean] The value indicating whether to Whether to validate
# XSD types.
attr_accessor :validate_xsd_types
attr_accessor :validate_xsdtypes

# @return [Boolean] The value indicating whether to allow leading and
# trailing spaces and zeroes.
Expand Down Expand Up @@ -100,16 +100,16 @@ def self.mapper()
name: 'Boolean'
}
},
validate_edi_types: {
validate_editypes: {
required: true,
serialized_name: 'validateEdiTypes',
serialized_name: 'validateEDITypes',
type: {
name: 'Boolean'
}
},
validate_xsd_types: {
validate_xsdtypes: {
required: true,
serialized_name: 'validateXsdTypes',
serialized_name: 'validateXSDTypes',
type: {
name: 'Boolean'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ class X12ValidationOverride
attr_accessor :message_id

# @return [Boolean] The value indicating whether to validate EDI types.
attr_accessor :validate_edi_types
attr_accessor :validate_editypes

# @return [Boolean] The value indicating whether to validate XSD types.
attr_accessor :validate_xsd_types
attr_accessor :validate_xsdtypes

# @return [Boolean] The value indicating whether to allow leading and
# trailing spaces and zeroes.
Expand Down Expand Up @@ -59,16 +59,16 @@ def self.mapper()
name: 'String'
}
},
validate_edi_types: {
validate_editypes: {
required: true,
serialized_name: 'validateEdiTypes',
serialized_name: 'validateEDITypes',
type: {
name: 'Boolean'
}
},
validate_xsd_types: {
validate_xsdtypes: {
required: true,
serialized_name: 'validateXsdTypes',
serialized_name: 'validateXSDTypes',
type: {
name: 'Boolean'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ class X12ValidationSettings

# @return [Boolean] The value indicating whether to Whether to validate
# EDI types.
attr_accessor :validate_edi_types
attr_accessor :validate_editypes

# @return [Boolean] The value indicating whether to Whether to validate
# XSD types.
attr_accessor :validate_xsd_types
attr_accessor :validate_xsdtypes

# @return [Boolean] The value indicating whether to allow leading and
# trailing spaces and zeroes.
Expand Down Expand Up @@ -100,16 +100,16 @@ def self.mapper()
name: 'Boolean'
}
},
validate_edi_types: {
validate_editypes: {
required: true,
serialized_name: 'validateEdiTypes',
serialized_name: 'validateEDITypes',
type: {
name: 'Boolean'
}
},
validate_xsd_types: {
validate_xsdtypes: {
required: true,
serialized_name: 'validateXsdTypes',
serialized_name: 'validateXSDTypes',
type: {
name: 'Boolean'
}
Expand Down