How CRUD operations work in the SDK
mainThe SDK follows a CRUD (Create, Read, Update, Delete) design pattern. Most objects are instances of AbstractObject or AbstractCrudObject located in facebook_business.adobjects.
Key methods available on many ad objects include:
api_get: Read properties from the API.api_update: Sync local changes to the server.api_delete: Remove the object.create_xxx: Create a new instance of the object (e.g.,create_campaign).get_xxx: Retrieve related objects or edges.
Note: Avoid using deprecated methods like remote_create, remote_read, remote_update, or remote_delete as they may be removed in future versions.