/* Options: Date: 2025-12-06 08:51:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AwsAuthSendChallengeCode.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/AwsAuthSendChallengeCode", "GET,POST,OPTIONS") class AwsAuthSendChallengeCode implements IReturn, IConvertible, IPost { String? Username; String? Password; String? ChallengeName; AwsAuthSendChallengeCode({this.Username,this.Password,this.ChallengeName}); AwsAuthSendChallengeCode.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Username = json['Username']; Password = json['Password']; ChallengeName = json['ChallengeName']; return this; } Map toJson() => { 'Username': Username, 'Password': Password, 'ChallengeName': ChallengeName }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "AwsAuthSendChallengeCode"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'AwsAuthSendChallengeCode': TypeInfo(TypeOf.Class, create:() => AwsAuthSendChallengeCode()), });