Sha256: 305f860d1b1a8e387e68eed385bdfc269e4416d90106830c82f68c5d5d041295

Contents?: true

Size: 973 Bytes

Versions: 1

Compression:

Stored size: 973 Bytes

Contents

require "fortnox/api/models/base"

module Fortnox
  module API
    module Model
      class EmailInformation < Fortnox::API::Model::Base

        #EmailAddressTo Customer e-mail address. Must be a valid e-mail address. 1024 characters
        attribute :email_address_to, String

        #EmailAddressCC Customer e-mail address – Copy. Must be a valid e-mail address. 1024 characters
        attribute :email_address_cc, String

        #EmailAddressBCC Customer e-mail address – Blind carbon copy. Must be a valid e-mail address. 1024 characters
        attribute :email_address_bcc, String

        #EmailSubject Subject of the e-mail, 100 characters. The variable {no} = document number. The variable {name} =  customer name.
        attribute :email_subject, String

        #EmailBody Body of the e-mail, 20000 characters. The variable {no}  = document number. The variable {name} =  customer name
        attribute :email_body, String
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fortnox-api-0.1.0 lib/fortnox/api/models/email_information.rb