/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class WebFeedPartialUpdateQueryResourceObjectAttributes { /** * The name of this web feed */ 'name'?: string | null; /** * The URL of the web feed */ 'url'?: string | null; /** * The HTTP method for requesting the web feed */ 'requestMethod'?: WebFeedPartialUpdateQueryResourceObjectAttributes.RequestMethodEnum | 'get' | 'post' | null; /** * The content-type of the web feed */ 'contentType'?: WebFeedPartialUpdateQueryResourceObjectAttributes.ContentTypeEnum | 'json' | 'xml' | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "url", "baseName": "url", "type": "string" }, { "name": "requestMethod", "baseName": "request_method", "type": "WebFeedPartialUpdateQueryResourceObjectAttributes.RequestMethodEnum" }, { "name": "contentType", "baseName": "content_type", "type": "WebFeedPartialUpdateQueryResourceObjectAttributes.ContentTypeEnum" } ]; static getAttributeTypeMap() { return WebFeedPartialUpdateQueryResourceObjectAttributes.attributeTypeMap; } } export namespace WebFeedPartialUpdateQueryResourceObjectAttributes { export enum RequestMethodEnum { Get = 'get', Post = 'post' } export enum ContentTypeEnum { Json = 'json', Xml = 'xml' } }