Group
Extension

AsposeWordsCloud-WordsApi/lib/AsposeWordsCloud/Object/SaveOptionsData.pm

package AsposeWordsCloud::Object::SaveOptionsData;

require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Date::Parse;
use DateTime;

use base "AsposeWordsCloud::Object::BaseObject";

#
#
#
#NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
#

my $swagger_types = {
    'ColorMode' => 'string',
    'SaveFormat' => 'string',
    'FileName' => 'string',
    'DmlRenderingMode' => 'string',
    'DmlEffectsRenderingMode' => 'string',
    'ZipOutput' => 'boolean',
    'UpdateSdtContent' => 'boolean'
};

my $attribute_map = {
    'ColorMode' => 'ColorMode',
    'SaveFormat' => 'SaveFormat',
    'FileName' => 'FileName',
    'DmlRenderingMode' => 'DmlRenderingMode',
    'DmlEffectsRenderingMode' => 'DmlEffectsRenderingMode',
    'ZipOutput' => 'ZipOutput',
    'UpdateSdtContent' => 'UpdateSdtContent'
};

# new object
sub new { 
    my ($class, %args) = @_; 
    my $self = { 
        #
        'ColorMode' => $args{'ColorMode'}, 
        #
        'SaveFormat' => $args{'SaveFormat'}, 
        #
        'FileName' => $args{'FileName'}, 
        #
        'DmlRenderingMode' => $args{'DmlRenderingMode'}, 
        #
        'DmlEffectsRenderingMode' => $args{'DmlEffectsRenderingMode'}, 
        #
        'ZipOutput' => $args{'ZipOutput'}, 
        #
        'UpdateSdtContent' => $args{'UpdateSdtContent'}
    }; 

    return bless $self, $class; 
}  

# get swagger type of the attribute
sub get_swagger_types {
    return $swagger_types;
}

# get attribute mappping
sub get_attribute_map {
    return $attribute_map;
}

1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.