' Options: 'Date: 2025-07-18 00:40:35 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://smsgw.intele.no/pushsms/rest ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: RestSmsRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports InteleServiceStack.ServiceModel Namespace Global Namespace InteleServiceStack.ServiceModel Public Partial Class RestSmsRequest Implements IReturn(Of RestSmsResponse) ''' '''API Username. Usually your customer id ''' Public Overridable Property Username As Object ''' '''API Password ''' Public Overridable Property Password As String ''' '''Collection of messages to send ''' Public Overridable Property Messages As RestSmsMessageReq() = New RestSmsMessageReq(){} End Class Public Partial Class RestSmsResponse ''' '''Overall status of processing the request. Each message will have it's own status. This value indicates if any other error occured or not ''' Public Overridable Property ProcessResult As Boolean ''' '''Description of any error occured, if ProcessResult equals false ''' Public Overridable Property ProcessResultDescription As String ''' '''Collection of messages sent or failed ''' Public Overridable Property Messages As RestSmsMessageResp() = New RestSmsMessageResp(){} End Class End Namespace End Namespace