This method returns result of type 'SAOP.API.Models.JournalType.JournalType'.
/// Journal type details. public class JournalType { // Journal type id. public long JournalTypeId { get; set; } // Journal type code. public string Code { get; set; } // Journal type display code. public string DisplayCode { get; set; }
}
This method returns result of type 'SAOP.API.Models.JournalType.JournalType'.
/// Journal type details. class JournalType { // Journal type id. public $JournalTypeId; // Journal type code. public $Code; // Journal type display code. public $DisplayCode;
}
This method returns result of type 'SAOP.API.Models.JournalType.JournalType'.
/// Journal type details. public class JournalType { // Journal type id. public Long JournalTypeId; // Journal type code. public String Code; // Journal type display code. public String DisplayCode;