import Foundation
import ServiceStack
public class GetRegistrationprofileDetailsWithMessageQueue : Codable
{
public var id:String?
public var messageQueueId:Int?
public var isOffice365Context:Bool?
required public init(){}
}
public class RegistrationprofileDetails : Registrationprofile
{
public var steps:[RegistrationprofileStep] = []
public var messages:[InformationMessageBase] = []
public var readOnly:Bool?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case steps
case messages
case readOnly
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
steps = try container.decodeIfPresent([RegistrationprofileStep].self, forKey: .steps) ?? []
messages = try container.decodeIfPresent([InformationMessageBase].self, forKey: .messages) ?? []
readOnly = try container.decodeIfPresent(Bool.self, forKey: .readOnly)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if steps.count > 0 { try container.encode(steps, forKey: .steps) }
if messages.count > 0 { try container.encode(messages, forKey: .messages) }
if readOnly != nil { try container.encode(readOnly, forKey: .readOnly) }
}
}
public class Registrationprofile : Codable
{
public var id:String?
public var name:String?
public var hint:String?
public var order:Int?
public var registerAutomatically:Bool?
public var registerInBackground:Bool?
public var thumbnailUrl:String?
public var progCode:String?
public var versionControlType:Int?
public var woPlaceLogo:Int?
public var woPrinterBins:String?
public var selectAllFiles:Bool?
required public init(){}
}
public class RegistrationprofileStep : Codable
{
public var id:String?
public var name:String?
public var order:Int?
public var layout:RegistrationprofileStepLayout?
public var groups:[RegistrationprofileGroup] = []
required public init(){}
}
public enum RegistrationprofileStepLayout : String, Codable
{
case OneColumn_12
case TwoColumn_6_6
case TwoColumn_7_5
case ThreeColumn_4_4_4
}
public class RegistrationprofileGroup : Codable
{
public var id:String?
public var name:String?
public var label:String?
public var order:Int?
public var columnIndex:Int?
public var fields:[RegistrationprofileField] = []
public var labelLayoutType:Int?
required public init(){}
}
public class RegistrationprofileField : Codable
{
public var id:String?
public var documentFieldID:String?
public var label:String?
public var userControlType:String?
public var userControlProperties:[SerializableKeyValuePair<String,Object>] = []
public var hint:String?
public var order:Int?
public var hasDependableFields:Bool?
public var entityName:String?
public var state:RegistrationProfileFieldStateBase?
required public init(){}
}
public class RegistrationProfileFieldStateBase : Codable
{
public var documentFieldID:String?
public var required:Bool?
public var visible:Bool?
public var readonly:Bool?
required public init(){}
}
public class InformationMessageBase : IInformationMessage, Codable
{
public var type:MessageType?
public var summary:String?
public var fullMessage:String?
public var fieldName:String?
public var keepOpen:Bool?
required public init(){}
}
public enum MessageType : Int, Codable
{
case Information = 1
case Warning = 2
case Error = 3
case Success = 4
}
Swift GetRegistrationprofileDetailsWithMessageQueue DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /csv/reply/GetRegistrationprofileDetailsWithMessageQueue HTTP/1.1
Host: digiofficeapigateway.deltares.nl
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"ID":"00000000-0000-0000-0000-000000000000","MessageQueueId":0,"IsOffice365Context":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"Steps":[{"ID":"00000000-0000-0000-0000-000000000000","Name":"String","Order":0,"Layout":"OneColumn_12","Groups":[{"ID":"00000000-0000-0000-0000-000000000000","Name":"String","Label":"String","Order":0,"ColumnIndex":0,"Fields":[{"ID":"00000000-0000-0000-0000-000000000000","DocumentFieldID":"00000000-0000-0000-0000-000000000000","Label":"String","UserControlType":"String","UserControlProperties":[{}],"Hint":"String","Order":0,"HasDependableFields":false,"EntityName":"String","State":{"DocumentFieldID":"00000000-0000-0000-0000-000000000000","Required":false,"Visible":false,"Readonly":false}}],"LabelLayoutType":0}]}],"Messages":[{}],"ReadOnly":false,"ID":"00000000-0000-0000-0000-000000000000","Name":"String","Hint":"String","Order":0,"RegisterAutomatically":false,"RegisterInBackground":false,"ThumbnailUrl":"String","ProgCode":"String","VersionControlType":0,"WOPlaceLogo":0,"WOPrinterBins":"String","SelectAllFiles":false}