(* Options: Date: 2024-07-03 13:17:11 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateRating.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type RatingReviewResponse() = /// ///The title for the review /// [] member val Title:String = null with get,set /// ///The description for the review /// [] member val Description:String = null with get,set /// ///The rating score /// [] member val RatingScore:Int32 = new Int32() with get,set /// ///The review author /// [] member val Author:String = null with get,set /// ///The created date /// [] member val Created:DateTime = new DateTime() with get,set /// ///The review answer from the company /// [] member val ReviewAnswer:String = null with get,set [] type UpdateReview() = /// ///The title for the review /// [] member val Title:String = null with get,set /// ///The description for the review /// [] member val Description:String = null with get,set /// ///The review author /// [] member val Author:String = null with get,set /// ///The review answer from the company. Only the company can respond to this /// [] member val ReviewAnswer:String = null with get,set [] type CompanyRatingResponse() = /// /// /// [] member val CompanyId:Guid = new Guid() with get,set /// ///Id of the booking /// [] member val BookingId:Int32 = new Int32() with get,set /// ///The status of the rating, 1 = Active /// [] member val Status:Int32 = new Int32() with get,set /// ///The rating score /// [] member val RatingScore:Int32 = new Int32() with get,set /// ///The review if any exists to the rating /// [] member val Review:RatingReviewResponse = null with get,set member val CreatedDate:DateTime = new DateTime() with get,set member val UpdatedDate:DateTime = new DateTime() with get,set [] [] [] type UpdateRating() = interface IReturn /// /// /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Id of the booking /// [] member val BookingId:Int32 = new Int32() with get,set /// ///The identifier for the booking, use to verify the booking. Only needed when a customer, not admin /// [] member val Identifier:String = null with get,set /// ///The rating score between 1 and 5. /// [] member val RatingScore:Nullable = new Nullable() with get,set /// ///The review for the rating /// [] member val Review:UpdateReview = null with get,set