// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type DvrIPPartitionCapability struct {
	MaxPartitionNumber *int  `json:"max_partition_number,omitempty"`
	Supported          *bool `json:"supported,omitempty"`
}

func (o *DvrIPPartitionCapability) GetMaxPartitionNumber() *int {
	if o == nil {
		return nil
	}
	return o.MaxPartitionNumber
}

func (o *DvrIPPartitionCapability) GetSupported() *bool {
	if o == nil {
		return nil
	}
	return o.Supported
}
