/* tslint:disable */ /* eslint-disable */ /** * AutoGlue API * API for managing K3s clusters across cloud providers * * The version of the OpenAPI document: dev * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from "../runtime"; /** * * @export * @interface DtoAttachAnnotationsRequest */ export interface DtoAttachAnnotationsRequest { /** * * @type {Array} * @memberof DtoAttachAnnotationsRequest */ annotation_ids?: Array; } /** * Check if a given object implements the DtoAttachAnnotationsRequest interface. */ export function instanceOfDtoAttachAnnotationsRequest( value: object, ): value is DtoAttachAnnotationsRequest { return true; } export function DtoAttachAnnotationsRequestFromJSON( json: any, ): DtoAttachAnnotationsRequest { return DtoAttachAnnotationsRequestFromJSONTyped(json, false); } export function DtoAttachAnnotationsRequestFromJSONTyped( json: any, ignoreDiscriminator: boolean, ): DtoAttachAnnotationsRequest { if (json == null) { return json; } return { annotation_ids: json["annotation_ids"] == null ? undefined : json["annotation_ids"], }; } export function DtoAttachAnnotationsRequestToJSON( json: any, ): DtoAttachAnnotationsRequest { return DtoAttachAnnotationsRequestToJSONTyped(json, false); } export function DtoAttachAnnotationsRequestToJSONTyped( value?: DtoAttachAnnotationsRequest | null, ignoreDiscriminator: boolean = false, ): any { if (value == null) { return value; } return { annotation_ids: value["annotation_ids"], }; }