// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package components type ChannelMapping struct { ChannelKey *string `json:"channelKey,omitempty"` DeviceIdentifier *string `json:"deviceIdentifier,omitempty"` Enabled *string `json:"enabled,omitempty"` LineupIdentifier *string `json:"lineupIdentifier,omitempty"` } func (c *ChannelMapping) GetChannelKey() *string { if c == nil { return nil } return c.ChannelKey } func (c *ChannelMapping) GetDeviceIdentifier() *string { if c == nil { return nil } return c.DeviceIdentifier } func (c *ChannelMapping) GetEnabled() *string { if c == nil { return nil } return c.Enabled } func (c *ChannelMapping) GetLineupIdentifier() *string { if c == nil { return nil } return c.LineupIdentifier }