(* Options: Date: 2025-12-06 09:06:45 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GiftCardSurveyRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CRM.AgencyPlatform.API.Internal open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net [] type SurveyQuestion() = member val QuestionId:Int32 = new Int32() with get,set member val QuestionType:String = null with get,set member val HTML:String = null with get,set member val DependsOn:String = null with get,set [] type Survey() = member val SurveyId:Int32 = new Int32() with get,set member val ContactId:Int32 = new Int32() with get,set member val Questions:ResizeArray = new ResizeArray() with get,set [] type GiftCardSurvey() = inherit Survey() member val GiftCardId:Int32 = new Int32() with get,set member val GiftCards:ResizeArray = new ResizeArray() with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type GiftCardSurveyResponse() = member val Survey:GiftCardSurvey = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GiftCardSurveyRequest() = interface IReturn member val UID:Guid = new Guid() with get,set