""" Options: Date: 2024-12-29 02:15:11 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: DirectoryShareUpdateRequest.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Route("/Directory/Share/{directory_uuid}/Save", "POST") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class DirectoryShareUpdateRequest(IReturn[ResponseStatus]): directory_uuid: Optional[str] = None share_full_name: bool = False share_bday: bool = False share_home_phone: bool = False share_cell_phone: bool = False share_email: bool = False share_address: bool = False share_quote: bool = False share_bio: bool = False share_interests: bool = False share_home_country: bool = False share_program: bool = False share_picture: bool = False share_spouse_name: bool = False share_spouse_bday: bool = False share_wedding_date: bool = False share_kids: bool = False share_field_of_work: bool = False share_church: bool = False