using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSClaimResponse { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _claimLogId = 0; public int claimLogId { get {return this._claimLogId;} set {this._claimLogId = value;} } private DateTime _patientDOB = DateTime.MinValue; public DateTime patientDOB { get {return this._patientDOB;} set {this._patientDOB = value;} } private decimal _claimNetAmount = 0; public decimal claimNetAmount { get {return this._claimNetAmount;} set {this._claimNetAmount = value;} } private decimal _claimGrossAmount = 0; public decimal claimGrossAmount { get {return this._claimGrossAmount;} set {this._claimGrossAmount = value;} } private decimal _totalClaimedAmount = 0; public decimal totalClaimedAmount { get {return this._totalClaimedAmount;} set {this._totalClaimedAmount = value;} } private decimal _claimDiscountAmount = 0; public decimal claimDiscountAmount { get {return this._claimDiscountAmount;} set {this._claimDiscountAmount = value;} } private decimal _claimOverchargeAmount = 0; public decimal claimOverchargeAmount { get {return this._claimOverchargeAmount;} set {this._claimOverchargeAmount = value;} } private decimal _claimDeductableLevyAmount = 0; public decimal claimDeductableLevyAmount { get {return this._claimDeductableLevyAmount;} set {this._claimDeductableLevyAmount = value;} } private decimal _claimMMAPSurcharge = 0; public decimal claimMMAPSurcharge { get {return this._claimMMAPSurcharge;} set {this._claimMMAPSurcharge = value;} } private decimal _claimCoPaymentAmount = 0; public decimal claimCoPaymentAmount { get {return this._claimCoPaymentAmount;} set {this._claimCoPaymentAmount = value;} } private decimal _claimPatientLiableAmount = 0; public decimal claimPatientLiableAmount { get {return this._claimPatientLiableAmount;} set {this._claimPatientLiableAmount = value;} } private decimal _claimMedicalFundLiableAmount = 0; public decimal claimMedicalFundLiableAmount { get {return this._claimMedicalFundLiableAmount;} set {this._claimMedicalFundLiableAmount = value;} } private decimal _authAmountToProvider = 0; public decimal authAmountToProvider { get {return this._authAmountToProvider;} set {this._authAmountToProvider = value;} } private decimal _memberReimbursementAmount = 0; public decimal memberReimbursementAmount { get {return this._memberReimbursementAmount;} set {this._memberReimbursementAmount = value;} } private string _memberSurname = String.Empty; public string memberSurname { get {return this._memberSurname;} set {this._memberSurname = value;} } private string _memberFullName = String.Empty; public string memberFullName { get {return this._memberFullName;} set {this._memberFullName = value;} } private string _membershipNo = String.Empty; public string membershipNo { get {return this._membershipNo;} set {this._membershipNo = value;} } private string _memberAccountNo = String.Empty; public string memberAccountNo { get {return this._memberAccountNo;} set {this._memberAccountNo = value;} } private string _medSchemeName = String.Empty; public string medSchemeName { get {return this._medSchemeName;} set {this._medSchemeName = value;} } private string _medSchemeRegNo = String.Empty; public string medSchemeRegNo { get {return this._medSchemeRegNo;} set {this._medSchemeRegNo = value;} } private string _responseLevelInd = String.Empty; public string responseLevelInd { get {return this._responseLevelInd;} set {this._responseLevelInd = value;} } private string _responseResultCode = String.Empty; public string responseResultCode { get {return this._responseResultCode;} set {this._responseResultCode = value;} } private string _respondingParty = String.Empty; public string respondingParty { get {return this._respondingParty;} set {this._respondingParty = value;} } private string _msDeliveryTypeInd = String.Empty; public string msDeliveryTypeInd { get {return this._msDeliveryTypeInd;} set {this._msDeliveryTypeInd = value;} } private string _patientIdNumber = String.Empty; public string patientIdNumber { get {return this._patientIdNumber;} set {this._patientIdNumber = value;} } private string _authorizationNo = String.Empty; public string authorizationNo { get {return this._authorizationNo;} set {this._authorizationNo = value;} } private string _confirmationNo = String.Empty; public string confirmationNo { get {return this._confirmationNo;} set {this._confirmationNo = value;} } private string _patientAccountNo = String.Empty; public string patientAccountNo { get {return this._patientAccountNo;} set {this._patientAccountNo = value;} } private string _inOutHospitalInd = String.Empty; public string inOutHospitalInd { get {return this._inOutHospitalInd;} set {this._inOutHospitalInd = value;} } private string _claimRefNo = String.Empty; public string claimRefNo { get {return this._claimRefNo;} set {this._claimRefNo = value;} } private string _msDestinationCode = String.Empty; public string msDestinationCode { get {return this._msDestinationCode;} set {this._msDestinationCode = value;} } private string _msDestinationContactNo = String.Empty; public string msDestinationContactNo { get {return this._msDestinationContactNo;} set {this._msDestinationContactNo = value;} } private string _dependantCode = String.Empty; public string dependantCode { get {return this._dependantCode;} set {this._dependantCode = value;} } private string _patientSurname = String.Empty; public string patientSurname { get {return this._patientSurname;} set {this._patientSurname = value;} } private string _patientInitials = String.Empty; public string patientInitials { get {return this._patientInitials;} set {this._patientInitials = value;} } private string _patientFullName = String.Empty; public string patientFullName { get {return this._patientFullName;} set {this._patientFullName = value;} } }