// Code generated by go generate; DO NOT EDIT. package network import ( "net/url" "github.com/containers/podman/v3/pkg/bindings/internal/util" ) // Changed returns true if named field has been set func (o *DisconnectOptions) Changed(fieldName string) bool { return util.Changed(o, fieldName) } // ToParams formats struct fields to be passed to API service func (o *DisconnectOptions) ToParams() (url.Values, error) { return util.ToParams(o) } // WithForce set field Force to given value func (o *DisconnectOptions) WithForce(value bool) *DisconnectOptions { o.Force = &value return o } // GetForce returns value of field Force func (o *DisconnectOptions) GetForce() bool { if o.Force == nil { var z bool return z } return *o.Force }