class CrvApiClient::Api::Reproduction::SendNotificationRequestType

{ws.crvholding.com/commonTypes/}sendNotificationRequestType

notificationType - CrvApiClient::Api::Reproduction::NotificationType
notificationMessage - CrvApiClient::Api::Reproduction::NotificationMessageType
email - CrvApiClient::Api::Reproduction::EmailType
fax - CrvApiClient::Api::Reproduction::FaxType
sms - CrvApiClient::Api::Reproduction::SmsType
voice - CrvApiClient::Api::Reproduction::VoiceType
pager - CrvApiClient::Api::Reproduction::PagerType

Attributes

email[RW]
fax[RW]
notificationMessage[RW]
notificationType[RW]
pager[RW]
sms[RW]
voice[RW]

Public Class Methods

new(notificationType = nil, notificationMessage = [], email = [], fax = [], sms = [], voice = [], pager = []) click to toggle source
# File lib/crv_api_client/api/reproduction/reproduction.rb, line 794
def initialize(notificationType = nil, notificationMessage = [], email = [], fax = [], sms = [], voice = [], pager = [])
  @notificationType = notificationType
  @notificationMessage = notificationMessage
  @email = email
  @fax = fax
  @sms = sms
  @voice = voice
  @pager = pager
end