Class: AsposeEmailCloud::CreateEmailRequestData

Inherits:
EmailRequest
  • Object
show all
Defined in:
lib/aspose-email-cloud/models/requests/create_email_request_data.rb

Overview

Request model for create_email operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_name, request) ⇒ CreateEmailRequestData

Create an email document

Parameters:

  • file_name (String)

    Email document file name in storage

  • request (CreateEmailRequest)

    An email document and optional Storage info to specify where the file should be located



45
46
47
48
# File 'lib/aspose-email-cloud/models/requests/create_email_request_data.rb', line 45

def initialize(file_name, request)
  self.file_name = file_name if file_name
  self.request = request if request
end

Instance Attribute Details

#file_nameString

Email document file name in storage

Returns:

  • (String)


37
38
39
# File 'lib/aspose-email-cloud/models/requests/create_email_request_data.rb', line 37

def file_name
  @file_name
end

#requestCreateEmailRequest

An email document and optional Storage info to specify where the file should be located

Returns:



40
41
42
# File 'lib/aspose-email-cloud/models/requests/create_email_request_data.rb', line 40

def request
  @request
end

Instance Method Details

#to_http_info(api_client) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/aspose-email-cloud/models/requests/create_email_request_data.rb', line 50

def to_http_info(api_client)
  # verify the required parameter 'file_name' is set

  if api_client.config.client_side_validation && self.file_name.nil?
    raise ArgumentError, "Missing the required parameter 'file_name' when calling EmailApi.create_email"
  end

  # verify the required parameter 'request' is set

  if api_client.config.client_side_validation && self.request.nil?
    raise ArgumentError, "Missing the required parameter 'request' when calling EmailApi.create_email"
  end

  # resource path

  local_var_path = '/email/{fileName}'.sub('{' + 'fileName' + '}', self.file_name.to_s)

  # query parameters

  query_params = {}

  # form parameters

  form_params = {}

  # http body (model)

  post_body = api_client.object_to_http_body(self.request)
  auth_names = ['JWT']

  # header parameters

  header_params = {}
  # HTTP header 'Accept' (if needed)

  header_params['Accept'] = select_header_accept(['application/json'])
  # HTTP header 'Content-Type'

  header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : select_header_content_type(['application/json'])

  AsposeEmailCloud::HttpRequest.new(local_var_path,
                                  header_params,
                                  query_params,
                                  form_params,
                                  post_body,
                                  auth_names)
end