struct Matter::Cluster::Definitions::Channel::LineupInfo

Overview

The Lineup Info allows references to external lineup sources like Gracenote. The combination of OperatorName, LineupName, and PostalCode MUST uniquely identify a lineup.

Included Modules

Defined in:

matter/cluster/definitions/channel.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(any : TLV::Any) #

[View source]

Class Method Detail

def self.from_io(io : IO, format : IO::ByteFormat = IO::ByteFormat::LittleEndian) #

[View source]
def self.from_slice(bytes : Bytes) #

[View source]
def self.from_tlv(any : TLV::Any) #

[View source]
def self.from_tlv(data : Bytes) #

[View source]

Instance Method Detail

def lineup_info_type : LineupInfoType #

This shall indicate the type of lineup. This field is optional, but SHOULD be provided when known.


[View source]
def lineup_info_type=(lineup_info_type : LineupInfoType) #

This shall indicate the type of lineup. This field is optional, but SHOULD be provided when known.


[View source]
def lineup_name : String | Nil #

[View source]
def lineup_name=(lineup_name : String | Nil) #

[View source]
def operator_name : String #

This shall indicate the name of the operator, for example “Comcast”.


[View source]
def operator_name=(operator_name : String) #

This shall indicate the name of the operator, for example “Comcast”.


[View source]
def postal_code : String | Nil #

[View source]
def postal_code=(postal_code : String | Nil) #

[View source]
def to_io(io : IO, format : IO::ByteFormat = IO::ByteFormat::LittleEndian) : Nil #

[View source]
def to_slice : Bytes #

[View source]
def to_tlv(outer_tag : Nil | UInt8 | Tuple(UInt16, UInt16) | Tuple(UInt16, UInt16, UInt16) = nil) : TLV::Any #

[View source]