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

package components

type QcStatements struct {
	Ids    []string                      `json:"ids,omitempty"`
	Parsed *QcStatementsParsedStatements `json:"parsed,omitempty"`
}

func (o *QcStatements) GetIds() []string {
	if o == nil {
		return nil
	}
	return o.Ids
}

func (o *QcStatements) GetParsed() *QcStatementsParsedStatements {
	if o == nil {
		return nil
	}
	return o.Parsed
}
