=begin comment
Copyright (c) 2024 Aspose.Cells Cloud
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
=end comment
=cut
require 5.6.0;
use strict;
use utf8;
use JSON ;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use base ("Class::Accessor", "Class::Data::Inheritable");
__PACKAGE__->mk_classdata('attribute_map' => {});
__PACKAGE__->mk_classdata('method_documentation' => {});
__PACKAGE__->mk_classdata('class_documentation' => {});
# new object
sub new {
my ($class, %args) = @_;
my $self = bless {}, $class;
foreach my $attribute (keys %{$class->attribute_map}) {
my $args_key = $class->attribute_map->{$attribute};
$self->$attribute( $args{ $args_key } );
}
return $self;
}
# Run Operation Request
# PostWorksheetChartTitleRequest.name : The file name. ,
# PostWorksheetChartTitleRequest.sheetName : The worksheet name. ,
# PostWorksheetChartTitleRequest.chartIndex : The chart index. ,
# PostWorksheetChartTitleRequest.title : TitleChart title ,
# PostWorksheetChartTitleRequest.folder : The folder where the file is situated. ,
# PostWorksheetChartTitleRequest.storageName : The storage name where the file is situated.
{
my $params = {
'client' =>{
data_type => 'ApiClient',
description => 'API Client.',
required => '0',
}
};
__PACKAGE__->method_documentation->{ 'post_worksheet_chart_title' } = {
summary => 'Update chart title in the worksheet.',
params => $params,
returns => 'CellsCloudResponse',
};
}
sub run_http_request {
my ($self, %args) = @_;
my $client = $args{'client'};
# parse inputs
my $_resource_path = '/cells/{name}/worksheets/{sheetName}/charts/{chartIndex}/title';
my $_method = 'POST';
my $query_params = {};
my $header_params = {};
my $form_params = {};
my $_header_accept = $client->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $client->select_header_content_type('application/json');
if(defined $self->name){
my $_base_variable = "{" . "name" . "}";
my $_base_value = $client->to_path_value($self->name);
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
if(defined $self->sheet_name){
my $_base_variable = "{" . "sheetName" . "}";
my $_base_value = $client->to_path_value($self->sheet_name);
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
if(defined $self->chart_index){
my $_base_variable = "{" . "chartIndex" . "}";
my $_base_value = $client->to_path_value($self->chart_index);
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
if(defined $self->folder){
$query_params->{'folder'} = $client->to_query_value($self->folder);
}
if(defined $self->storage_name){
$query_params->{'storageName'} = $client->to_query_value($self->storage_name);
}
my $_body_data;
# body params
if (defined $self->title) {
#$_body_data = $self->title;
$_body_data = JSON->new->convert_blessed->encode( $self->title);
}
# authentication setting, if any
my $auth_settings = [qw()];
# make the API Call
my $response = $client->call_api($_resource_path, $_method, $query_params, $form_params, $header_params, $_body_data, $auth_settings);
return $response;
}
__PACKAGE__->method_documentation({
'name' => {
datatype => 'string',
base_name => 'name',
description => 'The file name.',
format => '',
read_only => '',
},
'sheet_name' => {
datatype => 'string',
base_name => 'sheetName',
description => 'The worksheet name.',
format => '',
read_only => '',
},
'chart_index' => {
datatype => 'int',
base_name => 'chartIndex',
description => 'The chart index.',
format => '',
read_only => '',
},
'title' => {
datatype => 'Title',
base_name => 'title',
description => 'TitleChart title',
format => '',
read_only => '',
},
'folder' => {
datatype => 'string',
base_name => 'folder',
description => 'The folder where the file is situated.',
format => '',
read_only => '',
},
'storage_name' => {
datatype => 'string',
base_name => 'storageName',
description => 'The storage name where the file is situated.',
format => '',
read_only => '',
},
});
__PACKAGE__->attribute_map( {
'name' => 'name',
'sheet_name' => 'sheetName',
'chart_index' => 'chartIndex',
'title' => 'title',
'folder' => 'folder',
'storage_name' => 'storageName'
} );
__PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map});
1;