Table of Contents

Class BrandingPolicyCustomLogo

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

Properties describing the custom logo attached to the branding policy.

[DataContract]
public class BrandingPolicyCustomLogo
Inheritance
BrandingPolicyCustomLogo
Inherited Members

Properties

Contents

The file contents (a base 64 encoded string) of your new logo.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "contents")]
public string? Contents { get; set; }

Property Value

string

Enabled

Whether or not there is a custom logo enabled.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "enabled")]
public bool? Enabled { get; set; }

Property Value

bool?

Format

The format of the encoded contents. Supported formats are 'png', 'gif', and jpg'. Note that all images are saved as PNG files, regardless of the format they are uploaded in.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "format")]
public string? Format { get; set; }

Property Value

string

Image

Properties for setting the image.

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "image")]
public object? Image { get; set; }

Property Value

object