""" Options: Date: 2026-06-22 04:35:18 Version: 8.52 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://gatewayframeworkapi.pstpf.com.au/api #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: GetRmsUIData.* #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 class ISubscription: suite_data_source_instance_id: Optional[str] = None object_id: Optional[str] = None alternate_key: Optional[str] = None ignore_validation: bool = False # @ApiResponse(Description="Eros RMS and UI Data for synching to Framework") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class GetRmsUIDataResponse: # @ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="BinRowVersion") bin_row_version: Optional[bytes] = None """ Bin Row Version of the last update """ # @ApiMember(DataType="string", Description="XML string containing the Framework Data", Name="FrameworkData") framework_data: Optional[str] = None """ XML string containing the Framework Data """ response_status: Optional[ResponseStatus] = None # @Api(Description="Retrieves Updated RMS and UI data to be saved to Framework") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class GetRmsUIData(IReturn[GetRmsUIDataResponse], ISubscription): """ Retrieves Updated RMS and UI data to be saved to Framework """ # @ApiMember(DataType="byte[]", Description="Bin Row Version of the last update", Name="BinRowVersion") bin_row_version: Optional[bytes] = None """ Bin Row Version of the last update """ # @ApiMember(DataType="Guid", Description="Suite Data Source Instance Id to determine which licensees data to retrieve.", Name="SuiteDataSourceInstanceId") suite_data_source_instance_id: Optional[str] = None """ Suite Data Source Instance Id to determine which licensees data to retrieve. """ ignore_validation: bool = False