class Azure::Logic::Mgmt::V2016_06_01::Models::AS2ErrorSettings

The AS2 agreement error settings.

Attributes

resend_if_mdn_not_received[RW]

@return [Boolean] The value indicating whether to resend message If MDN is not received.

suspend_duplicate_message[RW]

@return [Boolean] The value indicating whether to suspend duplicate message.

Public Class Methods

mapper() click to toggle source

Mapper for AS2ErrorSettings class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-06-01/generated/azure_mgmt_logic/models/as2error_settings.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AS2ErrorSettings',
    type: {
      name: 'Composite',
      class_name: 'AS2ErrorSettings',
      model_properties: {
        suspend_duplicate_message: {
          client_side_validation: true,
          required: true,
          serialized_name: 'suspendDuplicateMessage',
          type: {
            name: 'Boolean'
          }
        },
        resend_if_mdn_not_received: {
          client_side_validation: true,
          required: true,
          serialized_name: 'resendIfMdnNotReceived',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end