/* Options: Date: 2024-10-06 10:31:42 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CRMSharepointLinkRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/DynamicsCRM/Sharepoint/Link", "POST") class CRMSharepointLinkRequest implements IReturn, IConvertible, IPost { String? guid; String? name; bool? is_contact; bool? is_lead; bool? is_application; CRMSharepointLinkRequest({this.guid,this.name,this.is_contact,this.is_lead,this.is_application}); CRMSharepointLinkRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { guid = json['guid']; name = json['name']; is_contact = json['is_contact']; is_lead = json['is_lead']; is_application = json['is_application']; return this; } Map toJson() => { 'guid': guid, 'name': name, 'is_contact': is_contact, 'is_lead': is_lead, 'is_application': is_application }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "CRMSharepointLinkRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: { 'CRMSharepointLinkRequest': TypeInfo(TypeOf.Class, create:() => CRMSharepointLinkRequest()), });