AsposeWordsCloud-WordsApi/lib/AsposeWordsCloud/Object/Border.pm
package AsposeWordsCloud::Object::Border;
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 = {
'LineStyle' => 'LineStyle',
'LineWidth' => 'double',
'Color' => 'string',
'DistanceFromText' => 'double',
'Shadow' => 'boolean'
};
my $attribute_map = {
'LineStyle' => 'LineStyle',
'LineWidth' => 'LineWidth',
'Color' => 'Color',
'DistanceFromText' => 'DistanceFromText',
'Shadow' => 'Shadow'
};
# new object
sub new {
my ($class, %args) = @_;
my $self = {
#
'LineStyle' => $args{'LineStyle'},
#
'LineWidth' => $args{'LineWidth'},
#
'Color' => $args{'Color'},
#
'DistanceFromText' => $args{'DistanceFromText'},
#
'Shadow' => $args{'Shadow'}
};
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;