package vfpool import ( "encoding/json" "repository.basistech.ru/BASIS/decort-golang-sdk/internal/serialization" ) // Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions. // // In order to serialize with indent make sure to follow these guidelines: // - First argument -> prefix // - Second argument -> indent func (lvfpool ListVFPool) Serialize(params ...string) (serialization.Serialized, error) { if lvfpool.EntryCount == 0 { return []byte{}, nil } if len(params) > 1 { prefix := params[0] indent := params[1] return json.MarshalIndent(lvfpool, prefix, indent) } return json.Marshal(lvfpool) } // Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions. // // In order to serialize with indent make sure to follow these guidelines: // - First argument -> prefix // - Second argument -> indent func (rvfpool RecordVFPool) Serialize(params ...string) (serialization.Serialized, error) { if len(params) > 1 { prefix := params[0] indent := params[1] return json.MarshalIndent(rvfpool, prefix, indent) } return json.Marshal(rvfpool) } // Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions. // // In order to serialize with indent make sure to follow these guidelines: // - First argument -> prefix // - Second argument -> indent func (ivfpool ItemVFPool) Serialize(params ...string) (serialization.Serialized, error) { if len(params) > 1 { prefix := params[0] indent := params[1] return json.MarshalIndent(ivfpool, prefix, indent) } return json.Marshal(ivfpool) }