/* Options: Date: 2025-12-06 06:17:28 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetVideo.* //ExcludeTypes: //DefaultImports: */ // @Route("/video", "GET") // @Route("/video/{id}", "GET") export class GetVideo { // @ApiMember(DataType="int", IsRequired=true) public Id: number; /** @description Enable this to provide chunking of video data. */ // @ApiMember(Description="Enable this to provide chunking of video data.") public Stream: boolean; /** @description Request a video by it's filename. */ // @ApiMember(Description="Request a video by it's filename.") public FileName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetVideo'; } public getMethod() { return 'GET'; } public createResponse() {} }