' Options:
'Date: 2025-04-11 02:18:16
'Version: 8.23
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://api.bokamera.se
'
'''GlobalNamespace: 
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion: 
'''InitializeCollections: True
'''ExportValueTypes: False
'IncludeTypes: CreateNewsItem.*
'''ExcludeTypes: 
'''AddNamespaces: 
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types

Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports System.Globalization
Imports ServiceStack.Data
Imports System.IO
Imports System.Net
Imports System.Net.Http.Headers
Imports BokaMera.API.ServiceModel.Interfaces
Imports BokaMera.API.ServiceModel.Dtos

Namespace Global

    Namespace BokaMera.API.ServiceModel.Dtos

        <Route("/news", "POST")>
        <ValidateRequest(Validator:="IsAuthenticated")>
        Public Partial Class CreateNewsItem
            Implements IReturn(Of NewsItemQueryResponse)
            Implements ICompany
            '''<Summary>
            '''The company id, if empty will use the company id for the user you are logged in with.
            '''</Summary>
            <ApiMember(Description:="The company id, if empty will use the company id for the user you are logged in with.")>
            Public Overridable Property CompanyId As Nullable(Of Guid)

            '''<Summary>
            '''The news item header, keep this short and concise
            '''</Summary>
            <ApiMember(Description:="The news item header, keep this short and concise", IsRequired:=true)>
            Public Overridable Property Heading As String

            '''<Summary>
            '''The news body text
            '''</Summary>
            <ApiMember(Description:="The news body text", IsRequired:=true)>
            Public Overridable Property Body As String

            '''<Summary>
            '''Valid url to a image associated with the news
            '''</Summary>
            <ApiMember(Description:="Valid url to a image associated with the news")>
            Public Overridable Property ImageUrl As Uri

            '''<Summary>
            '''The timestamp from which the newsitem should be visible from
            '''</Summary>
            <ApiMember(Description:="The timestamp from which the newsitem should be visible from", IsRequired:=true)>
            Public Overridable Property From As Date

            '''<Summary>
            '''The timestamp to which the newsitem should be visible to
            '''</Summary>
            <ApiMember(Description:="The timestamp to which the newsitem should be visible to", IsRequired:=true)>
            Public Overridable Property To As Date
        End Class

        Public Partial Class NewsItemQueryResponse
            '''<Summary>
            '''The news item id
            '''</Summary>
            <ApiMember(Description:="The news item id")>
            Public Overridable Property Id As Integer

            '''<Summary>
            '''Heading of the news item
            '''</Summary>
            <ApiMember(Description:="Heading of the news item")>
            Public Overridable Property Heading As String

            '''<Summary>
            '''Body of the news item
            '''</Summary>
            <ApiMember(Description:="Body of the news item")>
            Public Overridable Property Body As String

            '''<Summary>
            '''Url to a image associated with the news
            '''</Summary>
            <ApiMember(Description:="Url to a image associated with the news")>
            Public Overridable Property ImageUrl As Uri

            '''<Summary>
            '''The timestamp from which the newsitem should be visible from
            '''</Summary>
            <ApiMember(Description:="The timestamp from which the newsitem should be visible from", IsRequired:=true)>
            Public Overridable Property From As Date

            '''<Summary>
            '''The timestamp to which the newsitem should be visible to
            '''</Summary>
            <ApiMember(Description:="The timestamp to which the newsitem should be visible to", IsRequired:=true)>
            Public Overridable Property To As Date

            '''<Summary>
            '''The timestamp when news was created
            '''</Summary>
            <ApiMember(Description:="The timestamp when news was created", IsRequired:=true)>
            Public Overridable Property Created As Date

            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace

    Namespace BokaMera.API.ServiceModel.Interfaces

        Public Interface ICompany
            Property CompanyId As Nullable(Of Guid)
        End Interface
    End Namespace
End Namespace