AsposeSlidesCloud-SlidesApi

 view release on metacpan or  search on metacpan

lib/AsposeSlidesCloud/Object/OleObjectFrame.pm  view on Meta::CPAN

    'link_path' => {
    	datatype => 'string',
    	base_name => 'LinkPath',
    	description => 'Full path to a linked file.',
    	format => '',
    	read_only => '',
    		},
    'update_automatic' => {
    	datatype => 'boolean',
    	base_name => 'UpdateAutomatic',
    	description => 'Determines if the linked embedded object is automatically updated when the presentation is opened or printed. Read/write Boolean.',
    	format => '',
    	read_only => '',
    		},
});

__PACKAGE__->swagger_types( {
    'self_uri' => 'ResourceUri',
    'alternate_links' => 'ARRAY[ResourceUri]',
    'name' => 'string',
    'width' => 'double',

lib/AsposeSlidesCloud/SlidesApi.pm  view on Meta::CPAN

    # make the API Call
    $self->{api_client}->call_api($_resource_path, $_method,
                                           $query_params, $form_params,
                                           $header_params, $_body_data, $files);
    return;
}

#
# replace_image_online
#
# Replaces image by the specified index and returns updated document. 
# 
# @param File $document Document data. (required)
# @param int $image_index Image index. (required)
# @param File $image Image data. (required)
# @param string $password Password. (optional)
{
    my $params = {
    'document' => {
        data_type => 'File',
        description => 'Document data.',

lib/AsposeSlidesCloud/SlidesApi.pm  view on Meta::CPAN

        description => 'Image data.',
        required => '1',
    },
    'password' => {
        data_type => 'string',
        description => 'Password.',
        required => '0',
    },
    };
    __PACKAGE__->method_documentation->{ 'replace_image_online' } = { 
    	summary => 'Replaces image by the specified index and returns updated document. ',
        params => $params,
        returns => 'File',
        };
}
# @return File
#
sub replace_image_online {
    my ($self, %args) = @_;

    # verify the required parameter 'document' is set

lib/AsposeSlidesCloud/SlidesApi.pm  view on Meta::CPAN

    my $_response_object = $self->{api_client}->deserialize('Portion', $response);
    return $_response_object;
}

#
# update_section
#
# Update section name.
# 
# @param string $name Document name. (required)
# @param int $section_index The position of the section to be updated. (required)
# @param string $section_name Section name. (required)
# @param string $password Document password. (optional)
# @param string $folder Document folder. (optional)
# @param string $storage Document storage. (optional)
{
    my $params = {
    'name' => {
        data_type => 'string',
        description => 'Document name.',
        required => '1',
    },
    'section_index' => {
        data_type => 'int',
        description => 'The position of the section to be updated.',
        required => '1',
    },
    'section_name' => {
        data_type => 'string',
        description => 'Section name.',
        required => '1',
    },
    'password' => {
        data_type => 'string',
        description => 'Document password.',



( run in 0.373 second using v1.01-cache-2.11-cpan-2b0bae70ee8 )