/* Options: Date: 2025-10-27 16:10:16 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://collections-api-zane.dev.platform.georiot.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCollectionSettingsRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @DataContract export class V4BaseRequest { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export enum SignatureAppearance { None = 'none', Text = 'text', Upload = 'upload', } export interface ICollectionSettings { profileImageId: string; signatureImageId: string; signatureText: string; signatureFont: string; signatureAppearance: SignatureAppearance; } export interface IGetCollectionSettingsResponse { data: ICollectionSettings; } // @DataContract export class GetCollectionSettingsResponse implements IGetCollectionSettingsResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v4/collections/settings", "GET") // @Route("/v4/collections/settings/{Id}", "GET") // @DataContract export class GetCollectionSettingsRequest extends V4BaseRequest implements IReturn { // @DataMember(Name="id") public id: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetCollectionSettingsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetCollectionSettingsResponse(); } }