' Options:
'Date: 2025-07-19 18:49:36
'Version: 8.71
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://team.evovoice.io
'
'''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: ListSettingsObjects.*
'''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 Voice.Api.App

Namespace Global

    Namespace Voice.Api.App

        '''<Summary>
        '''Get all configurable settings objects for the authenticated user
        '''</Summary>
        <Route("/app/settings-objects", "GET")>
        <Api(Description:="Get all configurable settings objects for the authenticated user")>
        Public Partial Class ListSettingsObjects
            Implements IReturn(Of ListSettingsObjectsResponse)
            Implements IGet
        End Class

        Public Partial Class ListSettingsObjectsResponse
            Public Overridable Property SettingsObjects As List(Of SettingsObject)
        End Class

        Public Partial Class SettingsObject
            Public Overridable Property Id As String
            Public Overridable Property Name As String
            Public Overridable Property Description As String
            Public Overridable Property [ReadOnly] As Boolean
            Public Overridable Property Type As SettingsObjectTypes
            Public Overridable Property EndpointType As EndpointTypes?
            Public Overridable Property Fields As List(Of SettingsField)
        End Class
    End Namespace
End Namespace