diff --git a/csharp/Svix/Models/TemplateOut.cs b/csharp/Svix/Models/TemplateOut.cs deleted file mode 100644 index 0d5be17e0..000000000 --- a/csharp/Svix/Models/TemplateOut.cs +++ /dev/null @@ -1,70 +0,0 @@ -// this file is @generated -using System.Text; -using Newtonsoft.Json; - -namespace Svix.Models -{ - public class TemplateOut - { - [JsonProperty("createdAt", Required = Required.Always)] - public required DateTime CreatedAt { get; set; } - - [JsonProperty("description", Required = Required.Always)] - public required string Description { get; set; } - - [JsonProperty("featureFlag")] - public string? FeatureFlag { get; set; } = null; - - [JsonProperty("filterTypes")] - public List? FilterTypes { get; set; } = null; - - [JsonProperty("id", Required = Required.Always)] - public required string Id { get; set; } - - [JsonProperty("instructions", Required = Required.Always)] - public required string Instructions { get; set; } - - [JsonProperty("instructionsLink")] - public string? InstructionsLink { get; set; } = null; - - [JsonProperty("kind", Required = Required.Always)] - public required ConnectorKind Kind { get; set; } - - [JsonProperty("logo", Required = Required.Always)] - public required string Logo { get; set; } - - [JsonProperty("name", Required = Required.Always)] - public required string Name { get; set; } - - [JsonProperty("orgId", Required = Required.Always)] - public required string OrgId { get; set; } - - [JsonProperty("transformation", Required = Required.Always)] - public required string Transformation { get; set; } - - [JsonProperty("updatedAt", Required = Required.Always)] - public required DateTime UpdatedAt { get; set; } - - public override string ToString() - { - StringBuilder sb = new StringBuilder(); - - sb.Append("class TemplateOut {\n"); - sb.Append(" CreatedAt: ").Append(CreatedAt).Append('\n'); - sb.Append(" Description: ").Append(Description).Append('\n'); - sb.Append(" FeatureFlag: ").Append(FeatureFlag).Append('\n'); - sb.Append(" FilterTypes: ").Append(FilterTypes).Append('\n'); - sb.Append(" Id: ").Append(Id).Append('\n'); - sb.Append(" Instructions: ").Append(Instructions).Append('\n'); - sb.Append(" InstructionsLink: ").Append(InstructionsLink).Append('\n'); - sb.Append(" Kind: ").Append(Kind).Append('\n'); - sb.Append(" Logo: ").Append(Logo).Append('\n'); - sb.Append(" Name: ").Append(Name).Append('\n'); - sb.Append(" OrgId: ").Append(OrgId).Append('\n'); - sb.Append(" Transformation: ").Append(Transformation).Append('\n'); - sb.Append(" UpdatedAt: ").Append(UpdatedAt).Append('\n'); - sb.Append("}\n"); - return sb.ToString(); - } - } -} diff --git a/csharp/Svix/Models/TransformationTemplateKind.cs b/csharp/Svix/Models/TransformationTemplateKind.cs deleted file mode 100644 index 07d8f309a..000000000 --- a/csharp/Svix/Models/TransformationTemplateKind.cs +++ /dev/null @@ -1,47 +0,0 @@ -// this file is @generated -using System.Runtime.Serialization; -using Newtonsoft.Json; -using Newtonsoft.Json.Converters; - -namespace Svix.Models -{ - [JsonConverter(typeof(StringEnumConverter))] - public enum TransformationTemplateKind - { - [EnumMember(Value = "Custom")] - Custom = 1, - - [EnumMember(Value = "CustomerIO")] - CustomerIo = 2, - - [EnumMember(Value = "Discord")] - Discord = 3, - - [EnumMember(Value = "Hubspot")] - Hubspot = 4, - - [EnumMember(Value = "Inngest")] - Inngest = 5, - - [EnumMember(Value = "Salesforce")] - Salesforce = 6, - - [EnumMember(Value = "Segment")] - Segment = 7, - - [EnumMember(Value = "Slack")] - Slack = 8, - - [EnumMember(Value = "Teams")] - Teams = 9, - - [EnumMember(Value = "TriggerDev")] - TriggerDev = 10, - - [EnumMember(Value = "Windmill")] - Windmill = 11, - - [EnumMember(Value = "Zapier")] - Zapier = 12, - } -} diff --git a/go/models/template_out.go b/go/models/template_out.go deleted file mode 100644 index 34b245e37..000000000 --- a/go/models/template_out.go +++ /dev/null @@ -1,20 +0,0 @@ -// Package svix this file is @generated DO NOT EDIT -package models - -import "time" - -type TemplateOut struct { - CreatedAt time.Time `json:"createdAt"` - Description string `json:"description"` - FeatureFlag *string `json:"featureFlag,omitempty"` - FilterTypes []string `json:"filterTypes,omitempty"` - Id string `json:"id"` // The TransformationTemplate's ID. - Instructions string `json:"instructions"` - InstructionsLink *string `json:"instructionsLink,omitempty"` - Kind ConnectorKind `json:"kind"` - Logo string `json:"logo"` - Name string `json:"name"` - OrgId string `json:"orgId"` // The Organization's ID. - Transformation string `json:"transformation"` - UpdatedAt time.Time `json:"updatedAt"` -} diff --git a/go/models/transformation_template_kind.go b/go/models/transformation_template_kind.go deleted file mode 100644 index 7070b4406..000000000 --- a/go/models/transformation_template_kind.go +++ /dev/null @@ -1,55 +0,0 @@ -// Package svix this file is @generated DO NOT EDIT -package models - -import ( - "encoding/json" - "fmt" - "slices" -) - -type TransformationTemplateKind string - -const ( - TRANSFORMATIONTEMPLATEKIND_CUSTOM TransformationTemplateKind = "Custom" - TRANSFORMATIONTEMPLATEKIND_CUSTOMER_IO TransformationTemplateKind = "CustomerIO" - TRANSFORMATIONTEMPLATEKIND_DISCORD TransformationTemplateKind = "Discord" - TRANSFORMATIONTEMPLATEKIND_HUBSPOT TransformationTemplateKind = "Hubspot" - TRANSFORMATIONTEMPLATEKIND_INNGEST TransformationTemplateKind = "Inngest" - TRANSFORMATIONTEMPLATEKIND_SALESFORCE TransformationTemplateKind = "Salesforce" - TRANSFORMATIONTEMPLATEKIND_SEGMENT TransformationTemplateKind = "Segment" - TRANSFORMATIONTEMPLATEKIND_SLACK TransformationTemplateKind = "Slack" - TRANSFORMATIONTEMPLATEKIND_TEAMS TransformationTemplateKind = "Teams" - TRANSFORMATIONTEMPLATEKIND_TRIGGER_DEV TransformationTemplateKind = "TriggerDev" - TRANSFORMATIONTEMPLATEKIND_WINDMILL TransformationTemplateKind = "Windmill" - TRANSFORMATIONTEMPLATEKIND_ZAPIER TransformationTemplateKind = "Zapier" -) - -var allowedTransformationTemplateKind = []TransformationTemplateKind{ - "Custom", - "CustomerIO", - "Discord", - "Hubspot", - "Inngest", - "Salesforce", - "Segment", - "Slack", - "Teams", - "TriggerDev", - "Windmill", - "Zapier", -} - -func (v *TransformationTemplateKind) UnmarshalJSON(src []byte) error { - var value string - err := json.Unmarshal(src, &value) - if err != nil { - return err - } - enumVal := TransformationTemplateKind(value) - if slices.Contains(allowedTransformationTemplateKind, enumVal) { - *v = enumVal - return nil - } - return fmt.Errorf("`%+v` is not a valid TransformationTemplateKind", value) - -} diff --git a/java/lib/src/main/java/com/svix/models/TemplateOut.java b/java/lib/src/main/java/com/svix/models/TemplateOut.java deleted file mode 100644 index 11bdbfe11..000000000 --- a/java/lib/src/main/java/com/svix/models/TemplateOut.java +++ /dev/null @@ -1,315 +0,0 @@ -// This file is @generated -package com.svix.models; - -import com.fasterxml.jackson.annotation.JsonAutoDetect; -import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.svix.Utils; - -import lombok.EqualsAndHashCode; -import lombok.ToString; - -import java.net.URI; -import java.time.OffsetDateTime; -import java.util.LinkedHashSet; -import java.util.Set; - -@ToString -@EqualsAndHashCode -@JsonInclude(JsonInclude.Include.NON_NULL) -@JsonAutoDetect(getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE) -public class TemplateOut { - @JsonProperty private OffsetDateTime createdAt; - @JsonProperty private String description; - @JsonProperty private String featureFlag; - @JsonProperty private Set filterTypes; - @JsonProperty private String id; - @JsonProperty private String instructions; - @JsonProperty private URI instructionsLink; - @JsonProperty private ConnectorKind kind; - @JsonProperty private URI logo; - @JsonProperty private String name; - @JsonProperty private String orgId; - @JsonProperty private String transformation; - @JsonProperty private OffsetDateTime updatedAt; - - public TemplateOut() {} - - public TemplateOut createdAt(OffsetDateTime createdAt) { - this.createdAt = createdAt; - return this; - } - - /** - * Get createdAt - * - * @return createdAt - */ - @javax.annotation.Nonnull - public OffsetDateTime getCreatedAt() { - return createdAt; - } - - public void setCreatedAt(OffsetDateTime createdAt) { - this.createdAt = createdAt; - } - - public TemplateOut description(String description) { - this.description = description; - return this; - } - - /** - * Get description - * - * @return description - */ - @javax.annotation.Nonnull - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public TemplateOut featureFlag(String featureFlag) { - this.featureFlag = featureFlag; - return this; - } - - /** - * Get featureFlag - * - * @return featureFlag - */ - @javax.annotation.Nullable - public String getFeatureFlag() { - return featureFlag; - } - - public void setFeatureFlag(String featureFlag) { - this.featureFlag = featureFlag; - } - - public TemplateOut filterTypes(Set filterTypes) { - this.filterTypes = filterTypes; - return this; - } - - public TemplateOut addFilterTypesItem(String filterTypesItem) { - if (this.filterTypes == null) { - this.filterTypes = new LinkedHashSet<>(); - } - this.filterTypes.add(filterTypesItem); - - return this; - } - - /** - * Get filterTypes - * - * @return filterTypes - */ - @javax.annotation.Nullable - public Set getFilterTypes() { - return filterTypes; - } - - public void setFilterTypes(Set filterTypes) { - this.filterTypes = filterTypes; - } - - public TemplateOut id(String id) { - this.id = id; - return this; - } - - /** - * The TransformationTemplate's ID. - * - * @return id - */ - @javax.annotation.Nonnull - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public TemplateOut instructions(String instructions) { - this.instructions = instructions; - return this; - } - - /** - * Get instructions - * - * @return instructions - */ - @javax.annotation.Nonnull - public String getInstructions() { - return instructions; - } - - public void setInstructions(String instructions) { - this.instructions = instructions; - } - - public TemplateOut instructionsLink(URI instructionsLink) { - this.instructionsLink = instructionsLink; - return this; - } - - /** - * Get instructionsLink - * - * @return instructionsLink - */ - @javax.annotation.Nullable - public URI getInstructionsLink() { - return instructionsLink; - } - - public void setInstructionsLink(URI instructionsLink) { - this.instructionsLink = instructionsLink; - } - - public TemplateOut kind(ConnectorKind kind) { - this.kind = kind; - return this; - } - - /** - * Get kind - * - * @return kind - */ - @javax.annotation.Nonnull - public ConnectorKind getKind() { - return kind; - } - - public void setKind(ConnectorKind kind) { - this.kind = kind; - } - - public TemplateOut logo(URI logo) { - this.logo = logo; - return this; - } - - /** - * Get logo - * - * @return logo - */ - @javax.annotation.Nonnull - public URI getLogo() { - return logo; - } - - public void setLogo(URI logo) { - this.logo = logo; - } - - public TemplateOut name(String name) { - this.name = name; - return this; - } - - /** - * Get name - * - * @return name - */ - @javax.annotation.Nonnull - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public TemplateOut orgId(String orgId) { - this.orgId = orgId; - return this; - } - - /** - * The Organization's ID. - * - * @return orgId - */ - @javax.annotation.Nonnull - public String getOrgId() { - return orgId; - } - - public void setOrgId(String orgId) { - this.orgId = orgId; - } - - public TemplateOut transformation(String transformation) { - this.transformation = transformation; - return this; - } - - /** - * Get transformation - * - * @return transformation - */ - @javax.annotation.Nonnull - public String getTransformation() { - return transformation; - } - - public void setTransformation(String transformation) { - this.transformation = transformation; - } - - public TemplateOut updatedAt(OffsetDateTime updatedAt) { - this.updatedAt = updatedAt; - return this; - } - - /** - * Get updatedAt - * - * @return updatedAt - */ - @javax.annotation.Nonnull - public OffsetDateTime getUpdatedAt() { - return updatedAt; - } - - public void setUpdatedAt(OffsetDateTime updatedAt) { - this.updatedAt = updatedAt; - } - - /** - * Create an instance of TemplateOut given an JSON string - * - * @param jsonString JSON string - * @return An instance of TemplateOut - * @throws JsonProcessingException if the JSON string is invalid with respect to TemplateOut - */ - public static TemplateOut fromJson(String jsonString) throws JsonProcessingException { - return Utils.getObjectMapper().readValue(jsonString, TemplateOut.class); - } - - /** - * Convert an instance of TemplateOut to an JSON string - * - * @return JSON string - */ - public String toJson() throws JsonProcessingException { - return Utils.getObjectMapper().writeValueAsString(this); - } -} diff --git a/javascript/src/models/templateOut.ts b/javascript/src/models/templateOut.ts deleted file mode 100644 index d037c605b..000000000 --- a/javascript/src/models/templateOut.ts +++ /dev/null @@ -1,59 +0,0 @@ -// this file is @generated -/* eslint @typescript-eslint/no-explicit-any: 0 */ -import { ConnectorKind, ConnectorKindSerializer } from "./connectorKind"; - -export interface TemplateOut { - createdAt: Date; - description: string; - featureFlag?: string | null; - filterTypes?: string[] | null; - /** The TransformationTemplate's ID. */ - id: string; - instructions: string; - instructionsLink?: string | null; - kind: ConnectorKind; - logo: string; - name: string; - /** The Organization's ID. */ - orgId: string; - transformation: string; - updatedAt: Date; -} - -export const TemplateOutSerializer = { - _fromJsonObject(object: any): TemplateOut { - return { - createdAt: new Date(object["createdAt"]), - description: object["description"], - featureFlag: object["featureFlag"], - filterTypes: object["filterTypes"], - id: object["id"], - instructions: object["instructions"], - instructionsLink: object["instructionsLink"], - kind: ConnectorKindSerializer._fromJsonObject(object["kind"]), - logo: object["logo"], - name: object["name"], - orgId: object["orgId"], - transformation: object["transformation"], - updatedAt: new Date(object["updatedAt"]), - }; - }, - - _toJsonObject(self: TemplateOut): any { - return { - createdAt: self.createdAt, - description: self.description, - featureFlag: self.featureFlag, - filterTypes: self.filterTypes, - id: self.id, - instructions: self.instructions, - instructionsLink: self.instructionsLink, - kind: ConnectorKindSerializer._toJsonObject(self.kind), - logo: self.logo, - name: self.name, - orgId: self.orgId, - transformation: self.transformation, - updatedAt: self.updatedAt, - }; - }, -}; diff --git a/kotlin/lib/src/main/kotlin/models/TemplateOut.kt b/kotlin/lib/src/main/kotlin/models/TemplateOut.kt deleted file mode 100644 index e357e8f02..000000000 --- a/kotlin/lib/src/main/kotlin/models/TemplateOut.kt +++ /dev/null @@ -1,22 +0,0 @@ -// This file is @generated -package com.svix.kotlin.models - -import kotlinx.datetime.Instant -import kotlinx.serialization.Serializable - -@Serializable -data class TemplateOut( - val createdAt: Instant, - val description: String, - val featureFlag: String? = null, - val filterTypes: Set? = null, - val id: String, - val instructions: String, - val instructionsLink: String? = null, - val kind: ConnectorKind, - val logo: String, - val name: String, - val orgId: String, - val transformation: String, - val updatedAt: Instant, -) diff --git a/kotlin/lib/src/main/kotlin/models/TransformationTemplateKind.kt b/kotlin/lib/src/main/kotlin/models/TransformationTemplateKind.kt deleted file mode 100644 index 0994b4287..000000000 --- a/kotlin/lib/src/main/kotlin/models/TransformationTemplateKind.kt +++ /dev/null @@ -1,27 +0,0 @@ -// This file is @generated -package com.svix.kotlin.models - -import com.svix.kotlin.ToQueryParam -import kotlinx.serialization.SerialName -import kotlinx.serialization.Serializable -import kotlinx.serialization.json.Json -import kotlinx.serialization.json.encodeToJsonElement -import kotlinx.serialization.json.jsonPrimitive - -@Serializable -enum class TransformationTemplateKind : ToQueryParam { - @SerialName("Custom") CUSTOM, - @SerialName("CustomerIO") CUSTOMER_IO, - @SerialName("Discord") DISCORD, - @SerialName("Hubspot") HUBSPOT, - @SerialName("Inngest") INNGEST, - @SerialName("Salesforce") SALESFORCE, - @SerialName("Segment") SEGMENT, - @SerialName("Slack") SLACK, - @SerialName("Teams") TEAMS, - @SerialName("TriggerDev") TRIGGER_DEV, - @SerialName("Windmill") WINDMILL, - @SerialName("Zapier") ZAPIER; - - override fun toQueryParam() = Json.encodeToJsonElement(this).jsonPrimitive.content -} diff --git a/python/svix/models/template_out.py b/python/svix/models/template_out.py deleted file mode 100644 index 1b7189861..000000000 --- a/python/svix/models/template_out.py +++ /dev/null @@ -1,36 +0,0 @@ -# this file is @generated -import typing as t -from datetime import datetime - -from .common import BaseModel -from .connector_kind import ConnectorKind - - -class TemplateOut(BaseModel): - created_at: datetime - - description: str - - feature_flag: t.Optional[str] = None - - filter_types: t.Optional[t.List[str]] = None - - id: str - """The TransformationTemplate's ID.""" - - instructions: str - - instructions_link: t.Optional[str] = None - - kind: ConnectorKind - - logo: str - - name: str - - org_id: str - """The Organization's ID.""" - - transformation: str - - updated_at: datetime diff --git a/python/svix/models/transformation_template_kind.py b/python/svix/models/transformation_template_kind.py deleted file mode 100644 index 8068572d1..000000000 --- a/python/svix/models/transformation_template_kind.py +++ /dev/null @@ -1,20 +0,0 @@ -# this file is @generated -from enum import Enum - - -class TransformationTemplateKind(str, Enum): - CUSTOM = "Custom" - CUSTOMER_IO = "CustomerIO" - DISCORD = "Discord" - HUBSPOT = "Hubspot" - INNGEST = "Inngest" - SALESFORCE = "Salesforce" - SEGMENT = "Segment" - SLACK = "Slack" - TEAMS = "Teams" - TRIGGER_DEV = "TriggerDev" - WINDMILL = "Windmill" - ZAPIER = "Zapier" - - def __str__(self) -> str: - return str(self.value) diff --git a/ruby/lib/svix/models/template_out.rb b/ruby/lib/svix/models/template_out.rb deleted file mode 100644 index fe880c712..000000000 --- a/ruby/lib/svix/models/template_out.rb +++ /dev/null @@ -1,96 +0,0 @@ -# frozen_string_literal: true -# This file is @generated -require "json" - -module Svix - class TemplateOut - attr_accessor :created_at - attr_accessor :description - attr_accessor :feature_flag - attr_accessor :filter_types - attr_accessor :id - attr_accessor :instructions - attr_accessor :instructions_link - attr_accessor :kind - attr_accessor :logo - attr_accessor :name - attr_accessor :org_id - attr_accessor :transformation - attr_accessor :updated_at - - ALL_FIELD ||= [ - "created_at", - "description", - "feature_flag", - "filter_types", - "id", - "instructions", - "instructions_link", - "kind", - "logo", - "name", - "org_id", - "transformation", - "updated_at" - ].freeze - private_constant :ALL_FIELD - - def initialize(attributes = {}) - unless attributes.is_a?(Hash) - fail(ArgumentError, "The input argument (attributes) must be a hash in `Svix::TemplateOut` new method") - end - - attributes.each do |k, v| - unless ALL_FIELD.include?(k.to_s) - fail(ArgumentError, "The field #{k} is not part of Svix::TemplateOut") - end - - instance_variable_set("@#{k}", v) - instance_variable_set("@__#{k}_is_defined", true) - end - end - - def self.deserialize(attributes = {}) - attributes = attributes.transform_keys(&:to_s) - attrs = Hash.new - attrs["created_at"] = DateTime.rfc3339(attributes["createdAt"]).to_time - attrs["description"] = attributes["description"] - attrs["feature_flag"] = attributes["featureFlag"] - attrs["filter_types"] = attributes["filterTypes"] - attrs["id"] = attributes["id"] - attrs["instructions"] = attributes["instructions"] - attrs["instructions_link"] = attributes["instructionsLink"] - attrs["kind"] = Svix::ConnectorKind.deserialize(attributes["kind"]) - attrs["logo"] = attributes["logo"] - attrs["name"] = attributes["name"] - attrs["org_id"] = attributes["orgId"] - attrs["transformation"] = attributes["transformation"] - attrs["updated_at"] = DateTime.rfc3339(attributes["updatedAt"]).to_time - new(attrs) - end - - def serialize - out = Hash.new - out["createdAt"] = Svix::serialize_primitive(@created_at) if @created_at - out["description"] = Svix::serialize_primitive(@description) if @description - out["featureFlag"] = Svix::serialize_primitive(@feature_flag) if @feature_flag - out["filterTypes"] = Svix::serialize_primitive(@filter_types) if @filter_types - out["id"] = Svix::serialize_primitive(@id) if @id - out["instructions"] = Svix::serialize_primitive(@instructions) if @instructions - out["instructionsLink"] = Svix::serialize_primitive(@instructions_link) if @instructions_link - out["kind"] = @kind.serialize if @kind - out["logo"] = Svix::serialize_primitive(@logo) if @logo - out["name"] = Svix::serialize_primitive(@name) if @name - out["orgId"] = Svix::serialize_primitive(@org_id) if @org_id - out["transformation"] = Svix::serialize_primitive(@transformation) if @transformation - out["updatedAt"] = Svix::serialize_primitive(@updated_at) if @updated_at - out - end - - # Serializes the object to a json string - # @return String - def to_json - JSON.dump(serialize) - end - end -end diff --git a/rust/src/models/template_out.rs b/rust/src/models/template_out.rs deleted file mode 100644 index fb49b4eb8..000000000 --- a/rust/src/models/template_out.rs +++ /dev/null @@ -1,75 +0,0 @@ -// this file is @generated -use serde::{Deserialize, Serialize}; - -use super::connector_kind::ConnectorKind; - -#[derive(Clone, Debug, Default, PartialEq, Deserialize, Serialize)] -pub struct TemplateOut { - #[serde(rename = "createdAt")] - pub created_at: String, - - pub description: String, - - #[serde(rename = "featureFlag")] - #[serde(skip_serializing_if = "Option::is_none")] - pub feature_flag: Option, - - #[serde(rename = "filterTypes")] - #[serde(skip_serializing_if = "Option::is_none")] - pub filter_types: Option>, - - /// The TransformationTemplate's ID. - pub id: String, - - pub instructions: String, - - #[serde(rename = "instructionsLink")] - #[serde(skip_serializing_if = "Option::is_none")] - pub instructions_link: Option, - - pub kind: ConnectorKind, - - pub logo: String, - - pub name: String, - - /// The Organization's ID. - #[serde(rename = "orgId")] - pub org_id: String, - - pub transformation: String, - - #[serde(rename = "updatedAt")] - pub updated_at: String, -} - -impl TemplateOut { - pub fn new( - created_at: String, - description: String, - id: String, - instructions: String, - kind: ConnectorKind, - logo: String, - name: String, - org_id: String, - transformation: String, - updated_at: String, - ) -> Self { - Self { - created_at, - description, - feature_flag: None, - filter_types: None, - id, - instructions, - instructions_link: None, - kind, - logo, - name, - org_id, - transformation, - updated_at, - } - } -}