Class: StackOne::Models::Operations::AtsDownloadApplicationDocumentRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/operations/ats_download_application_document_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(id:, sub_resource_id:, x_account_id:, export_format: nil, format: nil) ⇒ AtsDownloadApplicationDocumentRequest

Returns a new instance of AtsDownloadApplicationDocumentRequest.



27
28
29
30
31
32
33
# File 'lib/stack_one/models/operations/ats_download_application_document_request.rb', line 27

def initialize(id:, sub_resource_id:, x_account_id:, export_format: nil, format: nil)
  @id = id
  @sub_resource_id = sub_resource_id
  @x_account_id = 
  @export_format = export_format
  @format = format
end

Instance Method Details

#==(other) ⇒ Object



36
37
38
39
40
41
42
43
44
# File 'lib/stack_one/models/operations/ats_download_application_document_request.rb', line 36

def ==(other)
  return false unless other.is_a? self.class
  return false unless @id == other.id
  return false unless @sub_resource_id == other.sub_resource_id
  return false unless @x_account_id == other.
  return false unless @export_format == other.export_format
  return false unless @format == other.format
  true
end