require
5.6.0;
use
base (
"Class::Accessor"
,
"Class::Data::Inheritable"
);
__PACKAGE__->mk_classdata(
'attribute_map'
=> {});
__PACKAGE__->mk_classdata(
'method_documentation'
=> {});
__PACKAGE__->mk_classdata(
'class_documentation'
=> {});
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
;
}
{
my
$params
= {
'client'
=>{
data_type
=>
'ApiClient'
,
description
=>
'API Client.'
,
required
=>
'0'
,
}
};
__PACKAGE__->method_documentation->{
'get_worksheet_with_format'
} = {
summary
=>
'Retrieve the worksheet in a specified format from the workbook.'
,
params
=>
$params
,
returns
=>
'string'
,
};
}
sub
run_http_request {
my
(
$self
,
%args
) =
@_
;
my
$client
=
$args
{
'client'
};
my
$_resource_path
=
'/cells/{name}/worksheets/{sheetName}'
;
my
$_method
=
'GET'
;
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
->
format
){
$query_params
->{
'format'
} =
$client
->to_query_value(
$self
->
format
);
}
if
(
defined
$self
->vertical_resolution){
$query_params
->{
'verticalResolution'
} =
$client
->to_query_value(
$self
->vertical_resolution);
}
if
(
defined
$self
->horizontal_resolution){
$query_params
->{
'horizontalResolution'
} =
$client
->to_query_value(
$self
->horizontal_resolution);
}
if
(
defined
$self
->area){
$query_params
->{
'area'
} =
$client
->to_query_value(
$self
->area);
}
if
(
defined
$self
->page_index){
$query_params
->{
'pageIndex'
} =
$client
->to_query_value(
$self
->page_index);
}
if
(
defined
$self
->one_page_per_sheet){
$query_params
->{
'onePagePerSheet'
} =
$client
->to_query_value(
$self
->one_page_per_sheet);
}
if
(
defined
$self
->print_headings){
$query_params
->{
'printHeadings'
} =
$client
->to_query_value(
$self
->print_headings);
}
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
;
my
$auth_settings
= [
qw()
];
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
=>
''
,
},
'format'
=> {
datatype
=>
'string'
,
base_name
=>
'format'
,
description
=>
'Export format(CSV/XLS/HTML/MHTML/ODS/PDF/XML/TXT/TIFF/XLSB/XLSM/XLSX/XLTM/XLTX/XPS/PNG/JPG/JPEG/GIF/EMF/BMP/MD[Markdown]/Numbers).'
,
format
=>
''
,
read_only
=>
''
,
},
'vertical_resolution'
=> {
datatype
=>
'int'
,
base_name
=>
'verticalResolution'
,
description
=>
'Image vertical resolution.'
,
format
=>
''
,
read_only
=>
''
,
},
'horizontal_resolution'
=> {
datatype
=>
'int'
,
base_name
=>
'horizontalResolution'
,
description
=>
'Image horizontal resolution.'
,
format
=>
''
,
read_only
=>
''
,
},
'area'
=> {
datatype
=>
'string'
,
base_name
=>
'area'
,
description
=>
'Represents the range to be printed.'
,
format
=>
''
,
read_only
=>
''
,
},
'page_index'
=> {
datatype
=>
'int'
,
base_name
=>
'pageIndex'
,
description
=>
'Represents the page to be printed'
,
format
=>
''
,
read_only
=>
''
,
},
'one_page_per_sheet'
=> {
datatype
=>
'string'
,
base_name
=>
'onePagePerSheet'
,
description
=>
''
,
format
=>
''
,
read_only
=>
''
,
},
'print_headings'
=> {
datatype
=>
'string'
,
base_name
=>
'printHeadings'
,
description
=>
''
,
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'
,
'format'
=>
'format'
,
'vertical_resolution'
=>
'verticalResolution'
,
'horizontal_resolution'
=>
'horizontalResolution'
,
'area'
=>
'area'
,
'page_index'
=>
'pageIndex'
,
'one_page_per_sheet'
=>
'onePagePerSheet'
,
'print_headings'
=>
'printHeadings'
,
'folder'
=>
'folder'
,
'storage_name'
=>
'storageName'
} );
__PACKAGE__->mk_accessors(
keys
%{__PACKAGE__->attribute_map});
1;