Class: Files::As2IncomingMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/files.com/models/as2_incoming_message.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}, options = {}) ⇒ As2IncomingMessage

Returns a new instance of As2IncomingMessage.



7
8
9
10
# File 'lib/files.com/models/as2_incoming_message.rb', line 7

def initialize(attributes = {}, options = {})
  @attributes = attributes || {}
  @options = options || {}
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



5
6
7
# File 'lib/files.com/models/as2_incoming_message.rb', line 5

def attributes
  @attributes
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/files.com/models/as2_incoming_message.rb', line 5

def options
  @options
end

Class Method Details

.all(params = {}, options = {}) ⇒ Object



96
97
98
# File 'lib/files.com/models/as2_incoming_message.rb', line 96

def self.all(params = {}, options = {})
  list(params, options)
end

.list(params = {}, options = {}) ⇒ Object

Parameters:

cursor - string - Used for pagination.  Send a cursor value to resume an existing list from the point at which you left off.  Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
per_page - int64 - Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
as2_partner_id - int64 - As2 Partner ID.  If provided, will return message specific to that partner.


86
87
88
89
90
91
92
93
94
# File 'lib/files.com/models/as2_incoming_message.rb', line 86

def self.list(params = {}, options = {})
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
  raise InvalidParameterError.new("Bad parameter: as2_partner_id must be an Integer") if params.dig(:as2_partner_id) and !params.dig(:as2_partner_id).is_a?(Integer)

  List.new(As2IncomingMessage, params) do
    Api.send_request("/as2_incoming_messages", :get, params, options)
  end
end

Instance Method Details

#activity_logObject

string - JSON Structure of the activity log.



38
39
40
# File 'lib/files.com/models/as2_incoming_message.rb', line 38

def activity_log
  @attributes[:activity_log]
end

#as2_fromObject

string - AS2 FROM header of message



53
54
55
# File 'lib/files.com/models/as2_incoming_message.rb', line 53

def as2_from
  @attributes[:as2_from]
end

#as2_partner_idObject

int64 - Id of the AS2 Partner associated with this message.



18
19
20
# File 'lib/files.com/models/as2_incoming_message.rb', line 18

def as2_partner_id
  @attributes[:as2_partner_id]
end

#as2_toObject

string - AS2 TO header of message



48
49
50
# File 'lib/files.com/models/as2_incoming_message.rb', line 48

def as2_to
  @attributes[:as2_to]
end

#attachment_filenameObject

string - Filename of the file being received.



73
74
75
# File 'lib/files.com/models/as2_incoming_message.rb', line 73

def attachment_filename
  @attributes[:attachment_filename]
end

#body_sizeObject

string - Encrypted Payload Body Size



68
69
70
# File 'lib/files.com/models/as2_incoming_message.rb', line 68

def body_size
  @attributes[:body_size]
end

#content_typeObject

string - Content Type header of the incoming message.



28
29
30
# File 'lib/files.com/models/as2_incoming_message.rb', line 28

def content_type
  @attributes[:content_type]
end

#created_atObject

date-time - Message creation date/time



78
79
80
# File 'lib/files.com/models/as2_incoming_message.rb', line 78

def created_at
  @attributes[:created_at]
end

#http_headersObject

object - HTTP Headers sent with this message.



33
34
35
# File 'lib/files.com/models/as2_incoming_message.rb', line 33

def http_headers
  @attributes[:http_headers]
end

#idObject

int64 - Id of the AS2 Partner.



13
14
15
# File 'lib/files.com/models/as2_incoming_message.rb', line 13

def id
  @attributes[:id]
end

#message_idObject

string - AS2 Message Id



58
59
60
# File 'lib/files.com/models/as2_incoming_message.rb', line 58

def message_id
  @attributes[:message_id]
end

#processing_resultObject

string - Result of processing. Valid values: ‘unable_to_find_station`, `unable_to_find_partner`, `unable_to_validate_signature`, `decrypt_fail`, `file_save_fail`, `success`



43
44
45
# File 'lib/files.com/models/as2_incoming_message.rb', line 43

def processing_result
  @attributes[:processing_result]
end

#subjectObject

string - AS2 Subject Header



63
64
65
# File 'lib/files.com/models/as2_incoming_message.rb', line 63

def subject
  @attributes[:subject]
end

#uuidObject

string - UUID assigned to this message.



23
24
25
# File 'lib/files.com/models/as2_incoming_message.rb', line 23

def uuid
  @attributes[:uuid]
end