20 lines
655 B
Rust
20 lines
655 B
Rust
// This file is @generated by prost-build.
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct PostTableScriptRequest {
|
|
#[prost(int64, tag = "1")]
|
|
pub table_definition_id: i64,
|
|
#[prost(string, tag = "2")]
|
|
pub target_column: ::prost::alloc::string::String,
|
|
#[prost(string, tag = "3")]
|
|
pub script: ::prost::alloc::string::String,
|
|
#[prost(string, tag = "4")]
|
|
pub description: ::prost::alloc::string::String,
|
|
}
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct TableScriptResponse {
|
|
#[prost(int64, tag = "1")]
|
|
pub id: i64,
|
|
#[prost(string, tag = "2")]
|
|
pub warnings: ::prost::alloc::string::String,
|
|
}
|