| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::StoreFontType
Store font set.
eBay::API::XML::DataType::StoreFontType inherits from the eBay::API::XML::BaseDataType class
Font color for the Store description. Specified in 6-digit Hex format. For example: F6F6C9
Calls: SetStore RequiredInput: Conditionally
# Argument: 'xs:string'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'xs:string'
Font for the Store description.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontFaceCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontFaceCodeType'
Font size for the Store description.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontSizeCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontSizeCodeType'
Font color for the Store name. Specified in 6-digit Hex format. For example: F6F6C9
MaxLength: 6
Calls: SetStore RequiredInput: Conditionally
# Argument: 'xs:string'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'xs:string'
Font for the Store name.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontFaceCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontFaceCodeType'
Font size for the Store name.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontSizeCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontSizeCodeType'
Font color for the Store section title. Specified in 6-digit Hex format. For example: F6F6C9
Calls: SetStore RequiredInput: Conditionally
# Argument: 'xs:string'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'xs:string'
Font for the Store section title.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontFaceCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontFaceCodeType'
Font size for the Store section title.
Calls: SetStore RequiredInput: Conditionally
# Argument: 'ns:StoreFontSizeCodeType'
Calls: GetStore Returned: Conditionally Calls: GetStoreOptions Returned: Always
# Returns: 'ns:StoreFontSizeCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::StoreFontType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. StoreFontType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::Enum::StoreFontFaceCodeType; use eBay::API::XML::DataType::Enum::StoreFontSizeCodeType; my @gaProperties = ( [ 'DescColor', 'xs:string', '', '', '' ] , [ 'DescFace', 'ns:StoreFontFaceCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontFaceCodeType', '' ] , [ 'DescSize', 'ns:StoreFontSizeCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontSizeCodeType', '' ] , [ 'NameColor', 'xs:string', '', '', '' ] , [ 'NameFace', 'ns:StoreFontFaceCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontFaceCodeType', '' ] , [ 'NameSize', 'ns:StoreFontSizeCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontSizeCodeType', '' ] , [ 'TitleColor', 'xs:string', '', '', '' ] , [ 'TitleFace', 'ns:StoreFontFaceCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontFaceCodeType', '' ] , [ 'TitleSize', 'ns:StoreFontSizeCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreFontSizeCodeType', '' ] ); push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setDescColor { my $self = shift; $self->{'DescColor'} = shift }
sub getDescColor { my $self = shift; return $self->{'DescColor'}; }
sub setDescFace { my $self = shift; $self->{'DescFace'} = shift }
sub getDescFace { my $self = shift; return $self->{'DescFace'}; }
sub setDescSize { my $self = shift; $self->{'DescSize'} = shift }
sub getDescSize { my $self = shift; return $self->{'DescSize'}; }
sub setNameColor { my $self = shift; $self->{'NameColor'} = shift }
sub getNameColor { my $self = shift; return $self->{'NameColor'}; }
sub setNameFace { my $self = shift; $self->{'NameFace'} = shift }
sub getNameFace { my $self = shift; return $self->{'NameFace'}; }
sub setNameSize { my $self = shift; $self->{'NameSize'} = shift }
sub getNameSize { my $self = shift; return $self->{'NameSize'}; }
sub setTitleColor { my $self = shift; $self->{'TitleColor'} = shift }
sub getTitleColor { my $self = shift; return $self->{'TitleColor'}; }
sub setTitleFace { my $self = shift; $self->{'TitleFace'} = shift }
sub getTitleFace { my $self = shift; return $self->{'TitleFace'}; }
sub setTitleSize { my $self = shift; $self->{'TitleSize'} = shift }
sub getTitleSize { my $self = shift; return $self->{'TitleSize'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;