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

package components

type DarkgateFile struct {
	Length *int    `json:"length,omitempty"`
	Name   *string `json:"name,omitempty"`
}

func (o *DarkgateFile) GetLength() *int {
	if o == nil {
		return nil
	}
	return o.Length
}

func (o *DarkgateFile) GetName() *string {
	if o == nil {
		return nil
	}
	return o.Name
}
