deallocate_organization Subroutine

private pure elemental subroutine deallocate_organization(this)

Type Bound

openai

Arguments

Type IntentOptional Attributes Name
class(openai), intent(inout) :: this

Called by

proc~~deallocate_organization~~CalledByGraph proc~deallocate_organization foropenai_base::openai%deallocate_organization proc~deallocate_openai foropenai_base::openai%deallocate_openai proc~deallocate_openai->proc~deallocate_organization program~test_base test_base program~test_base->proc~deallocate_openai

Source Code

   elemental pure subroutine deallocate_organization(this)
      class(openai), intent(inout) :: this
      if (allocated(this%organization)) deallocate(this%organization)
   end subroutine deallocate_organization