/* Options: Date: 2026-02-27 02:48:08 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DisconnectGoogleMeet.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } // @Route("/google/meet/auth/{ResourceId}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") class DisconnectGoogleMeet implements IReturnVoid, ICompany, IConvertible, IDelete { /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") String? CompanyId; /** * The resource id to disconnect. Use 0 for company-wide default. */ // @ApiMember(Description="The resource id to disconnect. Use 0 for company-wide default.", IsRequired=true, ParameterType="path") int ResourceId = 0; DisconnectGoogleMeet({this.CompanyId,this.ResourceId}); DisconnectGoogleMeet.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; ResourceId = json['ResourceId']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'ResourceId': ResourceId }; createResponse() {} getTypeName() => "DisconnectGoogleMeet"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'DisconnectGoogleMeet': TypeInfo(TypeOf.Class, create:() => DisconnectGoogleMeet()), });