/* Options: Date: 2025-08-05 02:04:22 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: HubSpotConfigurationRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/hubspot/config", "POST") class HubSpotConfigurationRequest implements IConvertible, IPost { String? PortalId; String? ApiKey; HubSpotConfigurationRequest({this.PortalId,this.ApiKey}); HubSpotConfigurationRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PortalId = json['PortalId']; ApiKey = json['ApiKey']; return this; } Map toJson() => { 'PortalId': PortalId, 'ApiKey': ApiKey }; getTypeName() => "HubSpotConfigurationRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'HubSpotConfigurationRequest': TypeInfo(TypeOf.Class, create:() => HubSpotConfigurationRequest()), });