/* Options: Date: 2025-08-05 02:47:16 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMobileFormatsTemplatesDto.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Sitefinity/mobile-formats/templates", "GET") class GetMobileFormatsTemplatesDto implements IConvertible, IGet { String? SiteId; String? ContentTypeId; GetMobileFormatsTemplatesDto({this.SiteId,this.ContentTypeId}); GetMobileFormatsTemplatesDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SiteId = json['SiteId']; ContentTypeId = json['ContentTypeId']; return this; } Map toJson() => { 'SiteId': SiteId, 'ContentTypeId': ContentTypeId }; getTypeName() => "GetMobileFormatsTemplatesDto"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'GetMobileFormatsTemplatesDto': TypeInfo(TypeOf.Class, create:() => GetMobileFormatsTemplatesDto()), });